├── .editorconfig ├── LICENSE ├── README.md ├── assets ├── .gitkeep ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp └── preview.webp ├── justfile ├── mattermost.tera ├── renovate.json └── themes ├── catppuccin-frappe.json ├── catppuccin-latte.json ├── catppuccin-macchiato.json └── catppuccin-mocha.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # EditorConfig is awesome: https://EditorConfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | charset = utf-8 9 | indent_size = 2 10 | indent_style = space 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | # go 16 | [*.go] 17 | indent_style = tab 18 | indent_size = 4 19 | 20 | # python 21 | [*.{ini,py,py.tpl,rst}] 22 | indent_size = 4 23 | 24 | # rust 25 | [*.rs] 26 | indent_size = 4 27 | 28 | # documentation, utils 29 | [*.{md,mdx,diff}] 30 | trim_trailing_whitespace = false 31 | 32 | # windows shell scripts 33 | [*.{cmd,bat,ps1}] 34 | end_of_line = crlf 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Catppuccin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Logo
3 | 4 | Catppuccin for Mattermost 5 | 6 |

7 | 8 |

9 | 10 | 11 | 12 |

13 | 14 |

15 | 16 |

17 | 18 | ## Previews 19 | 20 |
21 | 🌻 Latte 22 | 23 |
24 |
25 | 🪴 Frappé 26 | 27 |
28 |
29 | 🌺 Macchiato 30 | 31 |
32 |
33 | 🌿 Mocha 34 | 35 |
36 | 37 | ## Usage 38 | 39 | 1. Open Mattermost. 40 | 2. Navigate to **Settings** > **Display** > **Theme** > **Edit** > **Custom Theme**. 41 | 3. Copy the contents of your preferred flavor from [`themes/`](./themes/) into the "Copy and paste to share theme colors" section. 42 | 43 | ## 💝 Thanks to 44 | 45 | - [winston](https://github.com/nekowinston) 46 | 47 |   48 | 49 |

50 | 51 |

52 | 53 |

54 | Copyright © 2021-present Catppuccin Org 55 |

56 | 57 |

58 | 59 |

60 | -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/mattermost/5b8eee42d274eaa5b29eb82c2b76e49bcdbfe983/assets/.gitkeep -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/mattermost/5b8eee42d274eaa5b29eb82c2b76e49bcdbfe983/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/mattermost/5b8eee42d274eaa5b29eb82c2b76e49bcdbfe983/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/mattermost/5b8eee42d274eaa5b29eb82c2b76e49bcdbfe983/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/mattermost/5b8eee42d274eaa5b29eb82c2b76e49bcdbfe983/assets/mocha.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/mattermost/5b8eee42d274eaa5b29eb82c2b76e49bcdbfe983/assets/preview.webp -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | _default: 2 | @just --list 3 | 4 | build: 5 | whiskers mattermost.tera 6 | -------------------------------------------------------------------------------- /mattermost.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: "2.2.0" 4 | matrix: 5 | - flavor 6 | filename: "themes/catppuccin-{{ flavor.identifier }}.json" 7 | --- 8 | { 9 | "sidebarBg": "#{{ mantle.hex }}", 10 | "sidebarText": "#{{ text.hex }}", 11 | "sidebarUnreadText": "#{{ green.hex }}", 12 | "sidebarTextHoverBg": "#{{ overlay0.hex }}", 13 | "sidebarTextActiveBorder": "#{{ overlay0.hex }}", 14 | "sidebarTextActiveColor": "#{{ base.hex }}", 15 | "sidebarHeaderBg": "#{{ crust.hex }}", 16 | "sidebarHeaderTextColor": "#{{ text.hex }}", 17 | "onlineIndicator": "#{{ green.hex }}", 18 | "mentionBg": "#{{ pink.hex }}", 19 | "awayIndicator": "#{{ peach.hex }}", 20 | "dndIndicator": "#{{ red.hex }}", 21 | "mentionBj": "#{{ crust.hex }}", 22 | "mentionColor": "#{{ crust.hex }}", 23 | "centerChannelBg": "#{{ base.hex }}", 24 | "centerChannelColor": "#{{ subtext0.hex }}", 25 | "newMessageSeparator": "#{{ red.hex }}", 26 | "linkColor": "#{{ blue.hex }}", 27 | "buttonBg": "#{{ blue.hex }}", 28 | "buttonColor": "#{{ base.hex }}", 29 | "errorTextColor": "#{{ red.hex }}", 30 | "mentionHighlightBg": "#{{ mantle.hex }}", 31 | "mentionHighlightLink": "#{{ rosewater.hex }}", 32 | "codeTheme": {% if flavor.dark %}"Monokai"{% else %}"GitHub"{% endif %}, 33 | "sidebarTeamBarBg": "#{{ crust.hex }}" 34 | } 35 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "local>catppuccin/renovate-config" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /themes/catppuccin-frappe.json: -------------------------------------------------------------------------------- 1 | { 2 | "sidebarBg": "#292c3c", 3 | "sidebarText": "#c6d0f5", 4 | "sidebarUnreadText": "#a6d189", 5 | "sidebarTextHoverBg": "#737994", 6 | "sidebarTextActiveBorder": "#737994", 7 | "sidebarTextActiveColor": "#303446", 8 | "sidebarHeaderBg": "#232634", 9 | "sidebarHeaderTextColor": "#c6d0f5", 10 | "onlineIndicator": "#a6d189", 11 | "mentionBg": "#f4b8e4", 12 | "awayIndicator": "#ef9f76", 13 | "dndIndicator": "#e78284", 14 | "mentionBj": "#232634", 15 | "mentionColor": "#232634", 16 | "centerChannelBg": "#303446", 17 | "centerChannelColor": "#a5adce", 18 | "newMessageSeparator": "#e78284", 19 | "linkColor": "#8caaee", 20 | "buttonBg": "#8caaee", 21 | "buttonColor": "#303446", 22 | "errorTextColor": "#e78284", 23 | "mentionHighlightBg": "#292c3c", 24 | "mentionHighlightLink": "#f2d5cf", 25 | "codeTheme": "Monokai", 26 | "sidebarTeamBarBg": "#232634" 27 | } 28 | -------------------------------------------------------------------------------- /themes/catppuccin-latte.json: -------------------------------------------------------------------------------- 1 | { 2 | "sidebarBg": "#e6e9ef", 3 | "sidebarText": "#4c4f69", 4 | "sidebarUnreadText": "#40a02b", 5 | "sidebarTextHoverBg": "#9ca0b0", 6 | "sidebarTextActiveBorder": "#9ca0b0", 7 | "sidebarTextActiveColor": "#eff1f5", 8 | "sidebarHeaderBg": "#dce0e8", 9 | "sidebarHeaderTextColor": "#4c4f69", 10 | "onlineIndicator": "#40a02b", 11 | "mentionBg": "#ea76cb", 12 | "awayIndicator": "#fe640b", 13 | "dndIndicator": "#d20f39", 14 | "mentionBj": "#dce0e8", 15 | "mentionColor": "#dce0e8", 16 | "centerChannelBg": "#eff1f5", 17 | "centerChannelColor": "#6c6f85", 18 | "newMessageSeparator": "#d20f39", 19 | "linkColor": "#1e66f5", 20 | "buttonBg": "#1e66f5", 21 | "buttonColor": "#eff1f5", 22 | "errorTextColor": "#d20f39", 23 | "mentionHighlightBg": "#e6e9ef", 24 | "mentionHighlightLink": "#dc8a78", 25 | "codeTheme": "GitHub", 26 | "sidebarTeamBarBg": "#dce0e8" 27 | } 28 | -------------------------------------------------------------------------------- /themes/catppuccin-macchiato.json: -------------------------------------------------------------------------------- 1 | { 2 | "sidebarBg": "#1e2030", 3 | "sidebarText": "#cad3f5", 4 | "sidebarUnreadText": "#a6da95", 5 | "sidebarTextHoverBg": "#6e738d", 6 | "sidebarTextActiveBorder": "#6e738d", 7 | "sidebarTextActiveColor": "#24273a", 8 | "sidebarHeaderBg": "#181926", 9 | "sidebarHeaderTextColor": "#cad3f5", 10 | "onlineIndicator": "#a6da95", 11 | "mentionBg": "#f5bde6", 12 | "awayIndicator": "#f5a97f", 13 | "dndIndicator": "#ed8796", 14 | "mentionBj": "#181926", 15 | "mentionColor": "#181926", 16 | "centerChannelBg": "#24273a", 17 | "centerChannelColor": "#a5adcb", 18 | "newMessageSeparator": "#ed8796", 19 | "linkColor": "#8aadf4", 20 | "buttonBg": "#8aadf4", 21 | "buttonColor": "#24273a", 22 | "errorTextColor": "#ed8796", 23 | "mentionHighlightBg": "#1e2030", 24 | "mentionHighlightLink": "#f4dbd6", 25 | "codeTheme": "Monokai", 26 | "sidebarTeamBarBg": "#181926" 27 | } 28 | -------------------------------------------------------------------------------- /themes/catppuccin-mocha.json: -------------------------------------------------------------------------------- 1 | { 2 | "sidebarBg": "#181825", 3 | "sidebarText": "#cdd6f4", 4 | "sidebarUnreadText": "#a6e3a1", 5 | "sidebarTextHoverBg": "#6c7086", 6 | "sidebarTextActiveBorder": "#6c7086", 7 | "sidebarTextActiveColor": "#1e1e2e", 8 | "sidebarHeaderBg": "#11111b", 9 | "sidebarHeaderTextColor": "#cdd6f4", 10 | "onlineIndicator": "#a6e3a1", 11 | "mentionBg": "#f5c2e7", 12 | "awayIndicator": "#fab387", 13 | "dndIndicator": "#f38ba8", 14 | "mentionBj": "#11111b", 15 | "mentionColor": "#11111b", 16 | "centerChannelBg": "#1e1e2e", 17 | "centerChannelColor": "#a6adc8", 18 | "newMessageSeparator": "#f38ba8", 19 | "linkColor": "#89b4fa", 20 | "buttonBg": "#89b4fa", 21 | "buttonColor": "#1e1e2e", 22 | "errorTextColor": "#f38ba8", 23 | "mentionHighlightBg": "#181825", 24 | "mentionHighlightLink": "#f5e0dc", 25 | "codeTheme": "Monokai", 26 | "sidebarTeamBarBg": "#11111b" 27 | } 28 | --------------------------------------------------------------------------------