├── .editorconfig ├── LICENSE ├── README.md ├── assets ├── .gitkeep └── konsole.png ├── justfile ├── konsole.tera └── themes ├── catppuccin-frappe.colorscheme ├── catppuccin-latte.colorscheme ├── catppuccin-macchiato.colorscheme └── catppuccin-mocha.colorscheme /.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 |
15 |
16 |
Copyright © 2021-present Catppuccin Org 36 |
37 | -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/konsole/3b64040e3f4ae5afb2347e7be8a38bc3cd8c73a8/assets/.gitkeep -------------------------------------------------------------------------------- /assets/konsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/konsole/3b64040e3f4ae5afb2347e7be8a38bc3cd8c73a8/assets/konsole.png -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | _default: 2 | @just --list 3 | 4 | build: 5 | whiskers konsole.tera 6 | -------------------------------------------------------------------------------- /konsole.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: "2.2.0" 4 | matrix: 5 | - flavor 6 | filename: "themes/catppuccin-{{ flavor.identifier }}.colorscheme" 7 | --- 8 | 9 | {%- macro rgb(color) -%} 10 | {{ color.rgb.r }},{{ color.rgb.g }},{{ color.rgb.b }} 11 | {%- endmacro -%} 12 | 13 | [Background] 14 | Color={{ self::rgb(color=base) }} 15 | 16 | [BackgroundFaint] 17 | Color={{ self::rgb(color=base) }} 18 | 19 | [BackgroundIntense] 20 | Color={{ self::rgb(color=base) }} 21 | 22 | [Color0] 23 | Color={{ self::rgb(color=overlay0) }} 24 | 25 | [Color0Faint] 26 | Color={{ self::rgb(color=overlay0) }} 27 | 28 | [Color0Intense] 29 | Color={{ self::rgb(color=overlay0) }} 30 | 31 | [Color1] 32 | Color={{ self::rgb(color=red) }} 33 | 34 | [Color1Faint] 35 | Color={{ self::rgb(color=red) }} 36 | 37 | [Color1Intense] 38 | Color={{ self::rgb(color=red) }} 39 | 40 | [Color2] 41 | Color={{ self::rgb(color=green) }} 42 | 43 | [Color2Faint] 44 | Color={{ self::rgb(color=green) }} 45 | 46 | [Color2Intense] 47 | Color={{ self::rgb(color=green) }} 48 | 49 | [Color3] 50 | Color={{ self::rgb(color=yellow) }} 51 | 52 | [Color3Faint] 53 | Color={{ self::rgb(color=yellow) }} 54 | 55 | [Color3Intense] 56 | Color={{ self::rgb(color=yellow) }} 57 | 58 | [Color4] 59 | Color={{ self::rgb(color=blue) }} 60 | 61 | [Color4Faint] 62 | Color={{ self::rgb(color=blue) }} 63 | 64 | [Color4Intense] 65 | Color={{ self::rgb(color=blue) }} 66 | 67 | [Color5] 68 | Color={{ self::rgb(color=mauve) }} 69 | 70 | [Color5Faint] 71 | Color={{ self::rgb(color=mauve) }} 72 | 73 | [Color5Intense] 74 | Color={{ self::rgb(color=mauve) }} 75 | 76 | [Color6] 77 | Color={{ self::rgb(color=sky) }} 78 | 79 | [Color6Faint] 80 | Color={{ self::rgb(color=sky) }} 81 | 82 | [Color6Intense] 83 | Color={{ self::rgb(color=sky) }} 84 | 85 | [Color7] 86 | Color={{ self::rgb(color=text) }} 87 | 88 | [Color7Faint] 89 | Color={{ self::rgb(color=text) }} 90 | 91 | [Color7Intense] 92 | Color={{ self::rgb(color=text) }} 93 | 94 | [Foreground] 95 | Color={{ self::rgb(color=text) }} 96 | 97 | [ForegroundFaint] 98 | Color={{ self::rgb(color=text) }} 99 | 100 | [ForegroundIntense] 101 | Color={{ self::rgb(color=text) }} 102 | 103 | [General] 104 | Blur=false 105 | ColorRandomization=false 106 | Description=Catppuccin {{ flavor.name }} 107 | Opacity=1 108 | Wallpaper= 109 | -------------------------------------------------------------------------------- /themes/catppuccin-frappe.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=48,52,70 3 | 4 | [BackgroundFaint] 5 | Color=48,52,70 6 | 7 | [BackgroundIntense] 8 | Color=48,52,70 9 | 10 | [Color0] 11 | Color=115,121,148 12 | 13 | [Color0Faint] 14 | Color=115,121,148 15 | 16 | [Color0Intense] 17 | Color=115,121,148 18 | 19 | [Color1] 20 | Color=231,130,132 21 | 22 | [Color1Faint] 23 | Color=231,130,132 24 | 25 | [Color1Intense] 26 | Color=231,130,132 27 | 28 | [Color2] 29 | Color=166,209,137 30 | 31 | [Color2Faint] 32 | Color=166,209,137 33 | 34 | [Color2Intense] 35 | Color=166,209,137 36 | 37 | [Color3] 38 | Color=229,200,144 39 | 40 | [Color3Faint] 41 | Color=229,200,144 42 | 43 | [Color3Intense] 44 | Color=229,200,144 45 | 46 | [Color4] 47 | Color=140,170,238 48 | 49 | [Color4Faint] 50 | Color=140,170,238 51 | 52 | [Color4Intense] 53 | Color=140,170,238 54 | 55 | [Color5] 56 | Color=202,158,230 57 | 58 | [Color5Faint] 59 | Color=202,158,230 60 | 61 | [Color5Intense] 62 | Color=202,158,230 63 | 64 | [Color6] 65 | Color=153,209,219 66 | 67 | [Color6Faint] 68 | Color=153,209,219 69 | 70 | [Color6Intense] 71 | Color=153,209,219 72 | 73 | [Color7] 74 | Color=198,208,245 75 | 76 | [Color7Faint] 77 | Color=198,208,245 78 | 79 | [Color7Intense] 80 | Color=198,208,245 81 | 82 | [Foreground] 83 | Color=198,208,245 84 | 85 | [ForegroundFaint] 86 | Color=198,208,245 87 | 88 | [ForegroundIntense] 89 | Color=198,208,245 90 | 91 | [General] 92 | Blur=false 93 | ColorRandomization=false 94 | Description=Catppuccin Frappé 95 | Opacity=1 96 | Wallpaper= 97 | -------------------------------------------------------------------------------- /themes/catppuccin-latte.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=239,241,245 3 | 4 | [BackgroundFaint] 5 | Color=239,241,245 6 | 7 | [BackgroundIntense] 8 | Color=239,241,245 9 | 10 | [Color0] 11 | Color=156,160,176 12 | 13 | [Color0Faint] 14 | Color=156,160,176 15 | 16 | [Color0Intense] 17 | Color=156,160,176 18 | 19 | [Color1] 20 | Color=210,15,57 21 | 22 | [Color1Faint] 23 | Color=210,15,57 24 | 25 | [Color1Intense] 26 | Color=210,15,57 27 | 28 | [Color2] 29 | Color=64,160,43 30 | 31 | [Color2Faint] 32 | Color=64,160,43 33 | 34 | [Color2Intense] 35 | Color=64,160,43 36 | 37 | [Color3] 38 | Color=223,142,29 39 | 40 | [Color3Faint] 41 | Color=223,142,29 42 | 43 | [Color3Intense] 44 | Color=223,142,29 45 | 46 | [Color4] 47 | Color=30,102,245 48 | 49 | [Color4Faint] 50 | Color=30,102,245 51 | 52 | [Color4Intense] 53 | Color=30,102,245 54 | 55 | [Color5] 56 | Color=136,57,239 57 | 58 | [Color5Faint] 59 | Color=136,57,239 60 | 61 | [Color5Intense] 62 | Color=136,57,239 63 | 64 | [Color6] 65 | Color=4,165,229 66 | 67 | [Color6Faint] 68 | Color=4,165,229 69 | 70 | [Color6Intense] 71 | Color=4,165,229 72 | 73 | [Color7] 74 | Color=76,79,105 75 | 76 | [Color7Faint] 77 | Color=76,79,105 78 | 79 | [Color7Intense] 80 | Color=76,79,105 81 | 82 | [Foreground] 83 | Color=76,79,105 84 | 85 | [ForegroundFaint] 86 | Color=76,79,105 87 | 88 | [ForegroundIntense] 89 | Color=76,79,105 90 | 91 | [General] 92 | Blur=false 93 | ColorRandomization=false 94 | Description=Catppuccin Latte 95 | Opacity=1 96 | Wallpaper= 97 | -------------------------------------------------------------------------------- /themes/catppuccin-macchiato.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=36,39,58 3 | 4 | [BackgroundFaint] 5 | Color=36,39,58 6 | 7 | [BackgroundIntense] 8 | Color=36,39,58 9 | 10 | [Color0] 11 | Color=110,115,141 12 | 13 | [Color0Faint] 14 | Color=110,115,141 15 | 16 | [Color0Intense] 17 | Color=110,115,141 18 | 19 | [Color1] 20 | Color=237,135,150 21 | 22 | [Color1Faint] 23 | Color=237,135,150 24 | 25 | [Color1Intense] 26 | Color=237,135,150 27 | 28 | [Color2] 29 | Color=166,218,149 30 | 31 | [Color2Faint] 32 | Color=166,218,149 33 | 34 | [Color2Intense] 35 | Color=166,218,149 36 | 37 | [Color3] 38 | Color=238,212,159 39 | 40 | [Color3Faint] 41 | Color=238,212,159 42 | 43 | [Color3Intense] 44 | Color=238,212,159 45 | 46 | [Color4] 47 | Color=138,173,244 48 | 49 | [Color4Faint] 50 | Color=138,173,244 51 | 52 | [Color4Intense] 53 | Color=138,173,244 54 | 55 | [Color5] 56 | Color=198,160,246 57 | 58 | [Color5Faint] 59 | Color=198,160,246 60 | 61 | [Color5Intense] 62 | Color=198,160,246 63 | 64 | [Color6] 65 | Color=145,215,227 66 | 67 | [Color6Faint] 68 | Color=145,215,227 69 | 70 | [Color6Intense] 71 | Color=145,215,227 72 | 73 | [Color7] 74 | Color=202,211,245 75 | 76 | [Color7Faint] 77 | Color=202,211,245 78 | 79 | [Color7Intense] 80 | Color=202,211,245 81 | 82 | [Foreground] 83 | Color=202,211,245 84 | 85 | [ForegroundFaint] 86 | Color=202,211,245 87 | 88 | [ForegroundIntense] 89 | Color=202,211,245 90 | 91 | [General] 92 | Blur=false 93 | ColorRandomization=false 94 | Description=Catppuccin Macchiato 95 | Opacity=1 96 | Wallpaper= 97 | -------------------------------------------------------------------------------- /themes/catppuccin-mocha.colorscheme: -------------------------------------------------------------------------------- 1 | [Background] 2 | Color=30,30,46 3 | 4 | [BackgroundFaint] 5 | Color=30,30,46 6 | 7 | [BackgroundIntense] 8 | Color=30,30,46 9 | 10 | [Color0] 11 | Color=108,112,134 12 | 13 | [Color0Faint] 14 | Color=108,112,134 15 | 16 | [Color0Intense] 17 | Color=108,112,134 18 | 19 | [Color1] 20 | Color=243,139,168 21 | 22 | [Color1Faint] 23 | Color=243,139,168 24 | 25 | [Color1Intense] 26 | Color=243,139,168 27 | 28 | [Color2] 29 | Color=166,227,161 30 | 31 | [Color2Faint] 32 | Color=166,227,161 33 | 34 | [Color2Intense] 35 | Color=166,227,161 36 | 37 | [Color3] 38 | Color=249,226,175 39 | 40 | [Color3Faint] 41 | Color=249,226,175 42 | 43 | [Color3Intense] 44 | Color=249,226,175 45 | 46 | [Color4] 47 | Color=137,180,250 48 | 49 | [Color4Faint] 50 | Color=137,180,250 51 | 52 | [Color4Intense] 53 | Color=137,180,250 54 | 55 | [Color5] 56 | Color=203,166,247 57 | 58 | [Color5Faint] 59 | Color=203,166,247 60 | 61 | [Color5Intense] 62 | Color=203,166,247 63 | 64 | [Color6] 65 | Color=137,220,235 66 | 67 | [Color6Faint] 68 | Color=137,220,235 69 | 70 | [Color6Intense] 71 | Color=137,220,235 72 | 73 | [Color7] 74 | Color=205,214,244 75 | 76 | [Color7Faint] 77 | Color=205,214,244 78 | 79 | [Color7Intense] 80 | Color=205,214,244 81 | 82 | [Foreground] 83 | Color=205,214,244 84 | 85 | [ForegroundFaint] 86 | Color=205,214,244 87 | 88 | [ForegroundIntense] 89 | Color=205,214,244 90 | 91 | [General] 92 | Blur=false 93 | ColorRandomization=false 94 | Description=Catppuccin Mocha 95 | Opacity=1 96 | Wallpaper= 97 | --------------------------------------------------------------------------------