├── .editorconfig ├── LICENSE ├── README.md ├── assets ├── .gitkeep ├── crt-frappe.png ├── crt-latte.png ├── crt-macchiato.png ├── crt-mocha.png └── preview.webp ├── crt.tera ├── renovate.json └── themes ├── catppuccin-frappe-profile.json ├── catppuccin-latte-profile.json ├── catppuccin-macchiato-profile.json └── catppuccin-mocha-profile.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 | [*.{diff,md}] 16 | trim_trailing_whitespace = true 17 | -------------------------------------------------------------------------------- /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 |
53 |
54 |
57 | Copyright © 2021-present Catppuccin Org 58 |
59 | 60 | 63 | -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/crt/044af9db38165e4a8cc1b4dfdfc5431ef9af0d7f/assets/.gitkeep -------------------------------------------------------------------------------- /assets/crt-frappe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/crt/044af9db38165e4a8cc1b4dfdfc5431ef9af0d7f/assets/crt-frappe.png -------------------------------------------------------------------------------- /assets/crt-latte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/crt/044af9db38165e4a8cc1b4dfdfc5431ef9af0d7f/assets/crt-latte.png -------------------------------------------------------------------------------- /assets/crt-macchiato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/crt/044af9db38165e4a8cc1b4dfdfc5431ef9af0d7f/assets/crt-macchiato.png -------------------------------------------------------------------------------- /assets/crt-mocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/crt/044af9db38165e4a8cc1b4dfdfc5431ef9af0d7f/assets/crt-mocha.png -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/crt/044af9db38165e4a8cc1b4dfdfc5431ef9af0d7f/assets/preview.webp -------------------------------------------------------------------------------- /crt.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: 2.5.1 4 | matrix: 5 | - flavor 6 | filename: "themes/catppuccin-{{ flavor.identifier }}-profile.json" 7 | --- 8 | {%-set palette = flavor.colors -%} 9 | { 10 | "backgroundColor": "#{{ palette.crust.hex }}", 11 | "fontColor": "#{{ if(cond=flavor.light, t=palette.maroon.hex, f=palette.rosewater.hex) }}", 12 | "flickering": 0, 13 | "horizontalSync": 0, 14 | "staticNoise": 0.0186, 15 | "chromaColor": 1, 16 | "saturationColor": 0.4967, 17 | "screenCurvature": 0, 18 | "glowingLine": 0.154, 19 | "burnIn": 0.0985, 20 | "bloom": 0.2996, 21 | "rasterization": 0, 22 | "jitter": 0.131, 23 | "rbgShift": 0, 24 | "brightness": 0.5014, 25 | "contrast": 0.85, 26 | "ambientLight": 0, 27 | "windowOpacity": 0.7028, 28 | "fontName": "System: Liberation Mono", 29 | "fontWidth": 1, 30 | "margin": 0.1, 31 | "blinkingCursor": true, 32 | "frameMargin": 0, 33 | "name": "catppuccin-{{ flavor.identifier }}", 34 | "version": 2 35 | } 36 | 37 | -------------------------------------------------------------------------------- /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-profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "backgroundColor": "#232634", 3 | "fontColor": "#f2d5cf", 4 | "flickering": 0, 5 | "horizontalSync": 0, 6 | "staticNoise": 0.0186, 7 | "chromaColor": 1, 8 | "saturationColor": 0.4967, 9 | "screenCurvature": 0, 10 | "glowingLine": 0.154, 11 | "burnIn": 0.0985, 12 | "bloom": 0.2996, 13 | "rasterization": 0, 14 | "jitter": 0.131, 15 | "rbgShift": 0, 16 | "brightness": 0.5014, 17 | "contrast": 0.85, 18 | "ambientLight": 0, 19 | "windowOpacity": 0.7028, 20 | "fontName": "System: Liberation Mono", 21 | "fontWidth": 1, 22 | "margin": 0.1, 23 | "blinkingCursor": true, 24 | "frameMargin": 0, 25 | "name": "catppuccin-frappe", 26 | "version": 2 27 | } -------------------------------------------------------------------------------- /themes/catppuccin-latte-profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "backgroundColor": "#dce0e8", 3 | "fontColor": "#e64553", 4 | "flickering": 0, 5 | "horizontalSync": 0, 6 | "staticNoise": 0.0186, 7 | "chromaColor": 1, 8 | "saturationColor": 0.4967, 9 | "screenCurvature": 0, 10 | "glowingLine": 0.154, 11 | "burnIn": 0.0985, 12 | "bloom": 0.2996, 13 | "rasterization": 0, 14 | "jitter": 0.131, 15 | "rbgShift": 0, 16 | "brightness": 0.5014, 17 | "contrast": 0.85, 18 | "ambientLight": 0, 19 | "windowOpacity": 0.7028, 20 | "fontName": "System: Liberation Mono", 21 | "fontWidth": 1, 22 | "margin": 0.1, 23 | "blinkingCursor": true, 24 | "frameMargin": 0, 25 | "name": "catppuccin-latte", 26 | "version": 2 27 | } -------------------------------------------------------------------------------- /themes/catppuccin-macchiato-profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "backgroundColor": "#181926", 3 | "fontColor": "#f4dbd6", 4 | "flickering": 0, 5 | "horizontalSync": 0, 6 | "staticNoise": 0.0186, 7 | "chromaColor": 1, 8 | "saturationColor": 0.4967, 9 | "screenCurvature": 0, 10 | "glowingLine": 0.154, 11 | "burnIn": 0.0985, 12 | "bloom": 0.2996, 13 | "rasterization": 0, 14 | "jitter": 0.131, 15 | "rbgShift": 0, 16 | "brightness": 0.5014, 17 | "contrast": 0.85, 18 | "ambientLight": 0, 19 | "windowOpacity": 0.7028, 20 | "fontName": "System: Liberation Mono", 21 | "fontWidth": 1, 22 | "margin": 0.1, 23 | "blinkingCursor": true, 24 | "frameMargin": 0, 25 | "name": "catppuccin-macchiato", 26 | "version": 2 27 | } -------------------------------------------------------------------------------- /themes/catppuccin-mocha-profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "backgroundColor": "#11111b", 3 | "fontColor": "#f5e0dc", 4 | "flickering": 0, 5 | "horizontalSync": 0, 6 | "staticNoise": 0.0186, 7 | "chromaColor": 1, 8 | "saturationColor": 0.4967, 9 | "screenCurvature": 0, 10 | "glowingLine": 0.154, 11 | "burnIn": 0.0985, 12 | "bloom": 0.2996, 13 | "rasterization": 0, 14 | "jitter": 0.131, 15 | "rbgShift": 0, 16 | "brightness": 0.5014, 17 | "contrast": 0.85, 18 | "ambientLight": 0, 19 | "windowOpacity": 0.7028, 20 | "fontName": "System: Liberation Mono", 21 | "fontWidth": 1, 22 | "margin": 0.1, 23 | "blinkingCursor": true, 24 | "frameMargin": 0, 25 | "name": "catppuccin-mocha", 26 | "version": 2 27 | } --------------------------------------------------------------------------------