├── .editorconfig ├── LICENSE ├── README.md ├── assets ├── preview.webp └── previews │ ├── frappe.webp │ ├── latte.webp │ ├── macchiato.webp │ └── mocha.webp ├── template.txt └── themes ├── frappe └── colors.txt ├── latte └── colors.txt ├── macchiato └── colors.txt └── mocha └── colors.txt /.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 |
48 |
49 |
52 | Copyright © 2021-present Catppuccin Org 53 |
54 | 55 | 58 | -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/dwarf-fortress/13e9d597bcb4084f77edf18f3e356fc3f2736955/assets/preview.webp -------------------------------------------------------------------------------- /assets/previews/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/dwarf-fortress/13e9d597bcb4084f77edf18f3e356fc3f2736955/assets/previews/frappe.webp -------------------------------------------------------------------------------- /assets/previews/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/dwarf-fortress/13e9d597bcb4084f77edf18f3e356fc3f2736955/assets/previews/latte.webp -------------------------------------------------------------------------------- /assets/previews/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/dwarf-fortress/13e9d597bcb4084f77edf18f3e356fc3f2736955/assets/previews/macchiato.webp -------------------------------------------------------------------------------- /assets/previews/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/dwarf-fortress/13e9d597bcb4084f77edf18f3e356fc3f2736955/assets/previews/mocha.webp -------------------------------------------------------------------------------- /template.txt: -------------------------------------------------------------------------------- 1 | --- 2 | brown: "{{mix yellow.hex base.hex 0.6}}" 3 | lgreen: "{{lighten green.hex 0.2}}" 4 | lcyan: "{{lighten teal.hex 0.2}}" 5 | --- 6 | [BLACK_R:{{base.r}}] 7 | [BLACK_G:{{base.g}}] 8 | [BLACK_B:{{base.b}}] 9 | [BLUE_R:{{blue.r}}] 10 | [BLUE_G:{{blue.g}}] 11 | [BLUE_B:{{blue.b}}] 12 | [GREEN_R:{{green.r}}] 13 | [GREEN_G:{{green.g}}] 14 | [GREEN_B:{{green.b}}] 15 | [CYAN_R:{{teal.r}}] 16 | [CYAN_G:{{teal.g}}] 17 | [CYAN_B:{{teal.b}}] 18 | [RED_R:{{red.r}}] 19 | [RED_G:{{red.g}}] 20 | [RED_B:{{red.b}}] 21 | [MAGENTA_R:{{mauve.r}}] 22 | [MAGENTA_G:{{mauve.g}}] 23 | [MAGENTA_B:{{mauve.b}}] 24 | [BROWN_R:{{red brown}}] 25 | [BROWN_G:{{green brown}}] 26 | [BROWN_B:{{blue brown}}] 27 | [LGRAY_R:{{overlay2.r}}] 28 | [LGRAY_G:{{overlay2.g}}] 29 | [LGRAY_B:{{overlay2.b}}] 30 | [DGRAY_R:{{surface2.r}}] 31 | [DGRAY_G:{{surface2.g}}] 32 | [DGRAY_B:{{surface2.b}}] 33 | [LBLUE_R:{{sky.r}}] 34 | [LBLUE_G:{{sky.g}}] 35 | [LBLUE_B:{{sky.b}}] 36 | [LGREEN_R:{{red lgreen}}] 37 | [LGREEN_G:{{green lgreen}}] 38 | [LGREEN_B:{{blue lgreen}}] 39 | [LCYAN_R:{{red lcyan}}] 40 | [LCYAN_G:{{green lcyan}}] 41 | [LCYAN_B:{{blue lcyan}}] 42 | [LRED_R:{{pink.r}}] 43 | [LRED_G:{{pink.g}}] 44 | [LRED_B:{{pink.b}}] 45 | [LMAGENTA_R:{{lavender.r}}] 46 | [LMAGENTA_G:{{lavender.g}}] 47 | [LMAGENTA_B:{{lavender.b}}] 48 | [YELLOW_R:{{yellow.r}}] 49 | [YELLOW_G:{{yellow.g}}] 50 | [YELLOW_B:{{yellow.b}}] 51 | [WHITE_R:{{text.r}}] 52 | [WHITE_G:{{text.g}}] 53 | [WHITE_B:{{text.b}}] 54 | -------------------------------------------------------------------------------- /themes/frappe/colors.txt: -------------------------------------------------------------------------------- 1 | [BLACK_R:48] 2 | [BLACK_G:52] 3 | [BLACK_B:70] 4 | [BLUE_R:140] 5 | [BLUE_G:170] 6 | [BLUE_B:238] 7 | [GREEN_R:166] 8 | [GREEN_G:209] 9 | [GREEN_B:137] 10 | [CYAN_R:129] 11 | [CYAN_G:200] 12 | [CYAN_B:190] 13 | [RED_R:231] 14 | [RED_G:130] 15 | [RED_B:132] 16 | [MAGENTA_R:202] 17 | [MAGENTA_G:158] 18 | [MAGENTA_B:230] 19 | [BROWN_R:157] 20 | [BROWN_G:143] 21 | [BROWN_B:115] 22 | [LGRAY_R:148] 23 | [LGRAY_G:156] 24 | [LGRAY_B:187] 25 | [DGRAY_R:98] 26 | [DGRAY_G:104] 27 | [DGRAY_B:128] 28 | [LBLUE_R:153] 29 | [LBLUE_G:209] 30 | [LBLUE_B:219] 31 | [LGREEN_R:221] 32 | [LGREEN_G:238] 33 | [LGREEN_B:210] 34 | [LCYAN_R:201] 35 | [LCYAN_G:231] 36 | [LCYAN_B:227] 37 | [LRED_R:244] 38 | [LRED_G:184] 39 | [LRED_B:228] 40 | [LMAGENTA_R:186] 41 | [LMAGENTA_G:187] 42 | [LMAGENTA_B:241] 43 | [YELLOW_R:229] 44 | [YELLOW_G:200] 45 | [YELLOW_B:144] 46 | [WHITE_R:198] 47 | [WHITE_G:208] 48 | [WHITE_B:245] 49 | -------------------------------------------------------------------------------- /themes/latte/colors.txt: -------------------------------------------------------------------------------- 1 | [BLACK_R:239] 2 | [BLACK_G:241] 3 | [BLACK_B:245] 4 | [BLUE_R:30] 5 | [BLUE_G:102] 6 | [BLUE_B:245] 7 | [GREEN_R:64] 8 | [GREEN_G:160] 9 | [GREEN_B:43] 10 | [CYAN_R:23] 11 | [CYAN_G:146] 12 | [CYAN_B:153] 13 | [RED_R:210] 14 | [RED_G:15] 15 | [RED_B:57] 16 | [MAGENTA_R:136] 17 | [MAGENTA_G:57] 18 | [MAGENTA_B:239] 19 | [BROWN_R:230] 20 | [BROWN_G:181] 21 | [BROWN_B:116] 22 | [LGRAY_R:124] 23 | [LGRAY_G:127] 24 | [LGRAY_B:147] 25 | [DGRAY_R:172] 26 | [DGRAY_G:176] 27 | [DGRAY_B:190] 28 | [LBLUE_R:4] 29 | [LBLUE_G:165] 30 | [LBLUE_B:229] 31 | [LGREEN_R:116] 32 | [LGREEN_G:212] 33 | [LGREEN_B:94] 34 | [LCYAN_R:53] 35 | [LCYAN_G:216] 36 | [LCYAN_B:225] 37 | [LRED_R:234] 38 | [LRED_G:118] 39 | [LRED_B:203] 40 | [LMAGENTA_R:114] 41 | [LMAGENTA_G:135] 42 | [LMAGENTA_B:253] 43 | [YELLOW_R:223] 44 | [YELLOW_G:142] 45 | [YELLOW_B:29] 46 | [WHITE_R:76] 47 | [WHITE_G:79] 48 | [WHITE_B:105] 49 | -------------------------------------------------------------------------------- /themes/macchiato/colors.txt: -------------------------------------------------------------------------------- 1 | [BLACK_R:36] 2 | [BLACK_G:39] 3 | [BLACK_B:58] 4 | [BLUE_R:138] 5 | [BLUE_G:173] 6 | [BLUE_B:244] 7 | [GREEN_R:166] 8 | [GREEN_G:218] 9 | [GREEN_B:149] 10 | [CYAN_R:139] 11 | [CYAN_G:213] 12 | [CYAN_B:202] 13 | [RED_R:237] 14 | [RED_G:135] 15 | [RED_B:150] 16 | [MAGENTA_R:198] 17 | [MAGENTA_G:160] 18 | [MAGENTA_B:246] 19 | [BROWN_R:157] 20 | [BROWN_G:143] 21 | [BROWN_B:119] 22 | [LGRAY_R:147] 23 | [LGRAY_G:154] 24 | [LGRAY_B:183] 25 | [DGRAY_R:91] 26 | [DGRAY_G:96] 27 | [DGRAY_B:120] 28 | [LBLUE_R:145] 29 | [LBLUE_G:215] 30 | [LBLUE_B:227] 31 | [LGREEN_R:230] 32 | [LGREEN_G:245] 33 | [LGREEN_B:225] 34 | [LCYAN_R:214] 35 | [LCYAN_G:240] 36 | [LCYAN_B:236] 37 | [LRED_R:245] 38 | [LRED_G:189] 39 | [LRED_B:230] 40 | [LMAGENTA_R:183] 41 | [LMAGENTA_G:189] 42 | [LMAGENTA_B:248] 43 | [YELLOW_R:238] 44 | [YELLOW_G:212] 45 | [YELLOW_B:159] 46 | [WHITE_R:202] 47 | [WHITE_G:211] 48 | [WHITE_B:245] 49 | -------------------------------------------------------------------------------- /themes/mocha/colors.txt: -------------------------------------------------------------------------------- 1 | [BLACK_R:30] 2 | [BLACK_G:30] 3 | [BLACK_B:46] 4 | [BLUE_R:137] 5 | [BLUE_G:180] 6 | [BLUE_B:250] 7 | [GREEN_R:166] 8 | [GREEN_G:227] 9 | [GREEN_B:161] 10 | [CYAN_R:148] 11 | [CYAN_G:226] 12 | [CYAN_B:213] 13 | [RED_R:243] 14 | [RED_G:139] 15 | [RED_B:168] 16 | [MAGENTA_R:203] 17 | [MAGENTA_G:166] 18 | [MAGENTA_B:247] 19 | [BROWN_R:161] 20 | [BROWN_G:148] 21 | [BROWN_B:123] 22 | [LGRAY_R:147] 23 | [LGRAY_G:153] 24 | [LGRAY_B:178] 25 | [DGRAY_R:88] 26 | [DGRAY_G:91] 27 | [DGRAY_B:112] 28 | [LBLUE_R:137] 29 | [LBLUE_G:220] 30 | [LBLUE_B:235] 31 | [LGREEN_R:240] 32 | [LGREEN_G:250] 33 | [LGREEN_B:240] 34 | [LCYAN_R:228] 35 | [LCYAN_G:248] 36 | [LCYAN_B:244] 37 | [LRED_R:245] 38 | [LRED_G:194] 39 | [LRED_B:231] 40 | [LMAGENTA_R:180] 41 | [LMAGENTA_G:190] 42 | [LMAGENTA_B:254] 43 | [YELLOW_R:249] 44 | [YELLOW_G:226] 45 | [YELLOW_B:175] 46 | [WHITE_R:205] 47 | [WHITE_G:214] 48 | [WHITE_B:244] 49 | --------------------------------------------------------------------------------