├── .editorconfig ├── LICENSE ├── README.md ├── assets ├── .gitkeep ├── cmus-Catppuccin1.png └── cmus-Catppuccin2.png └── catppuccin.theme /.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 | [*] 9 | end_of_line = lf 10 | charset = utf-8 11 | insert_final_newline = true 12 | indent_style = tabs 13 | indent_size = 4 14 | 15 | [*.txt] 16 | indent_style = tab 17 | indent_size = 4 18 | 19 | [*.{diff,md}] 20 | trim_trailing_whitespace = false 21 | -------------------------------------------------------------------------------- /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 |
17 |
Copyright © 2021-present Catppuccin Org 33 |
34 | -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sekki21956/cmus/a505caa8bb59dc1684003f6a7e944eef2aac9bd9/assets/.gitkeep -------------------------------------------------------------------------------- /assets/cmus-Catppuccin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sekki21956/cmus/a505caa8bb59dc1684003f6a7e944eef2aac9bd9/assets/cmus-Catppuccin1.png -------------------------------------------------------------------------------- /assets/cmus-Catppuccin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sekki21956/cmus/a505caa8bb59dc1684003f6a7e944eef2aac9bd9/assets/cmus-Catppuccin2.png -------------------------------------------------------------------------------- /catppuccin.theme: -------------------------------------------------------------------------------- 1 | ### 'Catppuccin' theme for CMus (for 255 color terms) 2 | set color_cmdline_bg=default 3 | # Text Color White 4 | set color_cmdline_fg=254 5 | # Error Color Red 6 | set color_error=211 7 | # Info Color Yellow 8 | set color_info=223 9 | # Separator Color Blue 10 | set color_separator=117 11 | 12 | # Statusline background Black 13 | set color_statusline_bg=default 14 | #Statusline foreground #White 15 | set color_statusline_fg=254 16 | 17 | # Titleline background Green 18 | set color_titleline_bg=151 19 | # Titleline foreground Black 20 | set color_titleline_fg=16 21 | 22 | # Terminal default as background 23 | set color_win_bg=default 24 | 25 | # Currently Playing song Blue 26 | set color_win_cur=117 27 | # Indicator over currently playing song Green 28 | set color_win_cur_sel_bg=151 29 | set color_win_cur_sel_fg=16 30 | 31 | # Browser Directory Colors White 32 | set color_win_dir=254 33 | 34 | # Playlist browser general text color White 35 | set color_win_fg=254 36 | # Selected inactive Directory of currently playing Album/Song Maroon bg Black fg 37 | set color_win_inactive_cur_sel_bg=181 38 | set color_win_inactive_cur_sel_fg=235 39 | 40 | # Selected inactive Directory Teal bg Black fg 41 | set color_win_inactive_sel_bg=152 42 | set color_win_inactive_sel_fg=235 43 | 44 | # Indicator color Blue 45 | set color_win_sel_bg=117 46 | set color_win_sel_fg=235 47 | 48 | # Artist/Album / Track Headings No background Blue text 49 | set color_win_title_bg=default 50 | set color_win_title_fg=117 51 | --------------------------------------------------------------------------------