add descriptions and modify css

This commit is contained in:
Amolith 2019-01-18 22:32:08 -05:00
parent 152495bbc6
commit 7da92f3698
Signed by: Amolith
GPG Key ID: 51FD40936DB0065B
1 changed files with 28 additions and 28 deletions

View File

@ -6,37 +6,37 @@ description: "A list of communities and a NixNet-styled theme for Mattermost"
cover: /assets/pages/mattermost.png cover: /assets/pages/mattermost.png
--- ---
## Communities ## Communities
- [NixNet](https://matter.nixnet.xyz/signup_user_complete/?id=n5qbfgiuaidmtmppetgj45zxuh) - [NixNet](https://matter.nixnet.xyz/signup_user_complete/?id=n5qbfgiuaidmtmppetgj45zxuh) - General chat, randomness, shiptosting, getting support, etc.
- [LenoirLUG](https://matter.nixnet.xyz/signup_user_complete/?id=rrko34wdzjfo5ykc49d1kkikeo) - [Linux Audio](https://matter.nixnet.xyz/signup_user_complete/?id=5ob84if1w3bx3n5phhsbjm3ohh) - Open to anyone with an interest in audio recording, production, etc. on Linux
- [Linux Audio](https://matter.nixnet.xyz/signup_user_complete/?id=5ob84if1w3bx3n5phhsbjm3ohh) - [LenoirLUG](https://matter.nixnet.xyz/signup_user_complete/?id=rrko34wdzjfo5ykc49d1kkikeo) - A chat room for the Lenoir Linux User Group
## Theme ## Theme
I've created a theme for Mattermost that uses the same colour scheme as the NixNet website. Copy and paste the code below into the application's theme settings under `Account Settings > Display > Theme > Custom Theme`. I've created a theme for Mattermost that uses the same colour scheme as the NixNet website. Copy and paste the code below into the application's theme settings under `Account Settings > Display > Theme > Custom Theme`.
```css ```css
{ {
"sidebarBg":"#242424", "sidebarBg":"#242424",
"sidebarText":"#ffffff", "sidebarText":"#ffffff",
"sidebarUnreadText":"#ffffff", "sidebarUnreadText":"#ffffff",
"sidebarTextHoverBg":"#525252", "sidebarTextHoverBg":"#525252",
"sidebarTextActiveBorder":"#2b6863", "sidebarTextActiveBorder":"#2b6863",
"sidebarTextActiveColor":"#ffffff", "sidebarTextActiveColor":"#ffffff",
"sidebarHeaderBg":"#242424", "sidebarHeaderBg":"#242424",
"sidebarHeaderTextColor":"#ffffff", "sidebarHeaderTextColor":"#ffffff",
"onlineIndicator":"#2b6863", "onlineIndicator":"#2b6863",
"awayIndicator":"#68652b", "awayIndicator":"#68652b",
"dndIndicator":"#682b2b", "dndIndicator":"#682b2b",
"mentionBj":"#573c3c", "mentionBj":"#573c3c",
"mentionColor":"#ffffff", "mentionColor":"#ffffff",
"centerChannelBg":"#333333", "centerChannelBg":"#333333",
"centerChannelColor":"#ffffff", "centerChannelColor":"#ffffff",
"newMessageSeparator":"#2b6863", "newMessageSeparator":"#2b6863",
"linkColor":"#5a76c7", "linkColor":"#5a76c7",
"buttonBg":"#5a76c7", "buttonBg":"#5a76c7",
"buttonColor":"#ffffff", "buttonColor":"#ffffff",
"errorTextColor":"#654040", "errorTextColor":"#654040",
"mentionHighlightBg":"#426350", "mentionHighlightBg":"#949494",
"mentionHighlightLink":"#2b6863", "mentionHighlightLink":"#66aaa5",
"codeTheme":"monokai", "codeTheme":"monokai",
"mentionBg":"#573c3c" "mentionBg":"#573c3c"
} }```
``` ```