├── .editorconfig ├── LICENSE ├── README.md ├── alfred.tera ├── assets ├── .gitkeep └── alfred.png ├── dist ├── Catppuccin-default-frappe.alfredappearance ├── Catppuccin-default-latte.alfredappearance ├── Catppuccin-default-macchiato.alfredappearance ├── Catppuccin-default-mocha.alfredappearance ├── Catppuccin-macOS-frappe.alfredappearance ├── Catppuccin-macOS-latte.alfredappearance ├── Catppuccin-macOS-macchiato.alfredappearance ├── Catppuccin-macOS-mocha.alfredappearance ├── Catppuccin-modern-frappe.alfredappearance ├── Catppuccin-modern-latte.alfredappearance ├── Catppuccin-modern-macchiato.alfredappearance └── Catppuccin-modern-mocha.alfredappearance └── renovate.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 |
15 |
16 |
Copyright © 2021-present Catppuccin Org 51 |
52 | -------------------------------------------------------------------------------- /alfred.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: 2.0.0 4 | matrix: 5 | - flavor 6 | - variant: ["default", "macOS", "modern"] 7 | filename: "dist/Catppuccin-{{variant}}-{{flavor.identifier}}.alfredappearance" 8 | --- 9 | {% macro hexa(c) %}#{{ c.hex }}ff{% endmacro hexa %} 10 | {%- set palette = flavor.colors -%} 11 | {%- if variant == "default" -%} 12 | { 13 | "alfredtheme": { 14 | "result": { 15 | "textSpacing": 5, 16 | "subtext": { 17 | "size": 12, 18 | "colorSelected": "{{ self::hexa(c=palette.subtext0) }}", 19 | "font": "System", 20 | "color": "{{ self::hexa(c=palette.subtext1) }}" 21 | }, 22 | "shortcut": { 23 | "size": 16, 24 | "colorSelected": "{{ self::hexa(c=palette.text) }}", 25 | "font": "System", 26 | "color": "{{ self::hexa(c=palette.subtext1) }}" 27 | }, 28 | "backgroundSelected": "{{ self::hexa(c=palette.surface2) }}", 29 | "text": { 30 | "size": 18, 31 | "colorSelected": "{{ self::hexa(c=palette.text) }}", 32 | "font": "System", 33 | "color": "{{ self::hexa(c=palette.subtext1) }}" 34 | }, 35 | "iconPaddingHorizontal": 4, 36 | "roundness": 0, 37 | "paddingVertical": 3, 38 | "iconSize": 40 39 | }, 40 | "search": { 41 | "backgroundSelected": "{{ self::hexa(c=palette.surface2) }}", 42 | "paddingHorizontal": 8, 43 | "spacing": 8, 44 | "text": { 45 | "size": 34, 46 | "colorSelected": "{{ self::hexa(c=palette.text) }}", 47 | "font": "System Light", 48 | "color": "{{ self::hexa(c=palette.text) }}" 49 | }, 50 | "background": "{{ self::hexa(c=palette.crust) }}", 51 | "roundness": 0, 52 | "paddingVertical": 5 53 | }, 54 | "window": { 55 | "color": "{{ self::hexa(c=palette.mantle) }}", 56 | "paddingHorizontal": 9, 57 | "width": 560, 58 | "borderPadding": 0, 59 | "borderColor": "{{ self::hexa(c=palette.crust) }}", 60 | "blur": 15, 61 | "roundness": 3, 62 | "paddingVertical": 8 63 | }, 64 | "separator": { 65 | "color": "{{ self::hexa(c=palette.overlay0) }}", 66 | "thickness": 0 67 | }, 68 | "scrollbar": { 69 | "color": "{{ self::hexa(c=palette.overlay0) }}", 70 | "thickness": 2 71 | }, 72 | "name": "Catppuccin {{variant | capitalize }} - {{ flavor.identifier | capitalize }}", 73 | "credit": "Catppuccin Org" 74 | } 75 | } 76 | {%- elif variant == "macOS" -%} 77 | { 78 | "alfredtheme": { 79 | "result": { 80 | "textSpacing": 5, 81 | "subtext": { 82 | "size": 12, 83 | "colorSelected": "{{ self::hexa(c=palette.subtext0) }}", 84 | "font": "System", 85 | "color": "{{ self::hexa(c=palette.subtext1) }}" 86 | }, 87 | "shortcut": { 88 | "size": 16, 89 | "colorSelected": "{{ self::hexa(c=palette.text) }}", 90 | "font": "System", 91 | "color": "{{ self::hexa(c=palette.subtext1) }}" 92 | }, 93 | "backgroundSelected": "{{ self::hexa(c=palette.surface2) }}", 94 | "text": { 95 | "size": 18, 96 | "colorSelected": "{{ self::hexa(c=palette.text) }}", 97 | "font": "System", 98 | "color": "{{ self::hexa(c=palette.subtext1) }}" 99 | }, 100 | "iconPaddingHorizontal": 4, 101 | "roundness": 0, 102 | "paddingVertical": 3, 103 | "iconSize": 40 104 | }, 105 | "search": { 106 | "backgroundSelected": "{{ self::hexa(c=palette.surface2) }}", 107 | "paddingHorizontal": 8, 108 | "spacing": 4, 109 | "text": { 110 | "size": 34, 111 | "colorSelected": "{{ self::hexa(c=palette.text) }}", 112 | "font": "System Light", 113 | "color": "{{ self::hexa(c=palette.text) }}" 114 | }, 115 | "background": "{{ self::hexa(c=palette.crust) }}", 116 | "roundness": 0, 117 | "paddingVertical": 5 118 | }, 119 | "window": { 120 | "color": "{{ self::hexa(c=palette.mantle) }}", 121 | "paddingHorizontal": 0, 122 | "width": 559, 123 | "borderPadding": 0, 124 | "borderColor": "{{ self::hexa(c=palette.crust) }}", 125 | "blur": 15, 126 | "roundness": 3, 127 | "paddingVertical": 4 128 | }, 129 | "separator": { 130 | "color": "{{ self::hexa(c=palette.overlay0) }}", 131 | "thickness": 0 132 | }, 133 | "scrollbar": { 134 | "color": "{{ self::hexa(c=palette.overlay0) }}", 135 | "thickness": 2 136 | }, 137 | "name": "Catppuccin {{variant | capitalize }} - {{ flavor.identifier | capitalize }}", 138 | "credit": "Catppuccin Org" 139 | } 140 | } 141 | {%- else -%} 142 | { 143 | "alfredtheme": { 144 | "result": { 145 | "textSpacing": 5, 146 | "subtext": { 147 | "size": 12, 148 | "colorSelected": "{{ self::hexa(c=palette.subtext0) }}", 149 | "font": "System", 150 | "color": "{{ self::hexa(c=palette.subtext1) }}" 151 | }, 152 | "shortcut": { 153 | "size": 16, 154 | "colorSelected": "{{ self::hexa(c=palette.text) }}", 155 | "font": "System", 156 | "color": "{{ self::hexa(c=palette.subtext1) }}" 157 | }, 158 | "backgroundSelected": "{{ self::hexa(c=palette.surface2) }}", 159 | "text": { 160 | "size": 18, 161 | "colorSelected": "{{ self::hexa(c=palette.text) }}", 162 | "font": "System", 163 | "color": "{{ self::hexa(c=palette.subtext1) }}" 164 | }, 165 | "iconPaddingHorizontal": 7, 166 | "roundness": 8, 167 | "paddingVertical": 3, 168 | "iconSize": 40 169 | }, 170 | "search": { 171 | "backgroundSelected": "{{ self::hexa(c=palette.surface2) }}", 172 | "paddingHorizontal": 7, 173 | "spacing": 9, 174 | "text": { 175 | "size": 36, 176 | "colorSelected": "{{ self::hexa(c=palette.text) }}", 177 | "font": "System Light", 178 | "color": "{{ self::hexa(c=palette.text) }}" 179 | }, 180 | "background": "{{ self::hexa(c=palette.crust) }}", 181 | "roundness": 8, 182 | "paddingVertical": 5 183 | }, 184 | "window": { 185 | "color": "{{ self::hexa(c=palette.mantle) }}", 186 | "paddingHorizontal": 9, 187 | "width": 700, 188 | "borderPadding": 0, 189 | "borderColor": "{{ self::hexa(c=palette.crust) }}", 190 | "blur": 0, 191 | "roundness": 15, 192 | "paddingVertical": 9 193 | }, 194 | "visualEffectMode": 2, 195 | "separator": { 196 | "color": "{{ self::hexa(c=palette.overlay0) }}", 197 | "thickness": 0 198 | }, 199 | "scrollbar": { 200 | "color": "{{ self::hexa(c=palette.overlay0) }}", 201 | "thickness": 2 202 | }, 203 | "name": "Catppuccin {{variant | capitalize }} - {{ flavor.identifier | capitalize }}", 204 | "credit": "Catppuccin Org" 205 | } 206 | } 207 | {%- endif %} -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/alfred/faa7aec084df5b9042910c33fdcdf4ad440cfc5d/assets/.gitkeep -------------------------------------------------------------------------------- /assets/alfred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/alfred/faa7aec084df5b9042910c33fdcdf4ad440cfc5d/assets/alfred.png -------------------------------------------------------------------------------- /dist/Catppuccin-default-frappe.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#a5adceff", 8 | "font": "System", 9 | "color": "#b5bfe2ff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#c6d0f5ff", 14 | "font": "System", 15 | "color": "#b5bfe2ff" 16 | }, 17 | "backgroundSelected": "#626880ff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#c6d0f5ff", 21 | "font": "System", 22 | "color": "#b5bfe2ff" 23 | }, 24 | "iconPaddingHorizontal": 4, 25 | "roundness": 0, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#626880ff", 31 | "paddingHorizontal": 8, 32 | "spacing": 8, 33 | "text": { 34 | "size": 34, 35 | "colorSelected": "#c6d0f5ff", 36 | "font": "System Light", 37 | "color": "#c6d0f5ff" 38 | }, 39 | "background": "#232634ff", 40 | "roundness": 0, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#292c3cff", 45 | "paddingHorizontal": 9, 46 | "width": 560, 47 | "borderPadding": 0, 48 | "borderColor": "#232634ff", 49 | "blur": 15, 50 | "roundness": 3, 51 | "paddingVertical": 8 52 | }, 53 | "separator": { 54 | "color": "#737994ff", 55 | "thickness": 0 56 | }, 57 | "scrollbar": { 58 | "color": "#737994ff", 59 | "thickness": 2 60 | }, 61 | "name": "Catppuccin Default - Frappe", 62 | "credit": "Catppuccin Org" 63 | } 64 | } -------------------------------------------------------------------------------- /dist/Catppuccin-default-latte.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#6c6f85ff", 8 | "font": "System", 9 | "color": "#5c5f77ff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#4c4f69ff", 14 | "font": "System", 15 | "color": "#5c5f77ff" 16 | }, 17 | "backgroundSelected": "#acb0beff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#4c4f69ff", 21 | "font": "System", 22 | "color": "#5c5f77ff" 23 | }, 24 | "iconPaddingHorizontal": 4, 25 | "roundness": 0, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#acb0beff", 31 | "paddingHorizontal": 8, 32 | "spacing": 8, 33 | "text": { 34 | "size": 34, 35 | "colorSelected": "#4c4f69ff", 36 | "font": "System Light", 37 | "color": "#4c4f69ff" 38 | }, 39 | "background": "#dce0e8ff", 40 | "roundness": 0, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#e6e9efff", 45 | "paddingHorizontal": 9, 46 | "width": 560, 47 | "borderPadding": 0, 48 | "borderColor": "#dce0e8ff", 49 | "blur": 15, 50 | "roundness": 3, 51 | "paddingVertical": 8 52 | }, 53 | "separator": { 54 | "color": "#9ca0b0ff", 55 | "thickness": 0 56 | }, 57 | "scrollbar": { 58 | "color": "#9ca0b0ff", 59 | "thickness": 2 60 | }, 61 | "name": "Catppuccin Default - Latte", 62 | "credit": "Catppuccin Org" 63 | } 64 | } -------------------------------------------------------------------------------- /dist/Catppuccin-default-macchiato.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#a5adcbff", 8 | "font": "System", 9 | "color": "#b8c0e0ff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#cad3f5ff", 14 | "font": "System", 15 | "color": "#b8c0e0ff" 16 | }, 17 | "backgroundSelected": "#5b6078ff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#cad3f5ff", 21 | "font": "System", 22 | "color": "#b8c0e0ff" 23 | }, 24 | "iconPaddingHorizontal": 4, 25 | "roundness": 0, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#5b6078ff", 31 | "paddingHorizontal": 8, 32 | "spacing": 8, 33 | "text": { 34 | "size": 34, 35 | "colorSelected": "#cad3f5ff", 36 | "font": "System Light", 37 | "color": "#cad3f5ff" 38 | }, 39 | "background": "#181926ff", 40 | "roundness": 0, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#1e2030ff", 45 | "paddingHorizontal": 9, 46 | "width": 560, 47 | "borderPadding": 0, 48 | "borderColor": "#181926ff", 49 | "blur": 15, 50 | "roundness": 3, 51 | "paddingVertical": 8 52 | }, 53 | "separator": { 54 | "color": "#6e738dff", 55 | "thickness": 0 56 | }, 57 | "scrollbar": { 58 | "color": "#6e738dff", 59 | "thickness": 2 60 | }, 61 | "name": "Catppuccin Default - Macchiato", 62 | "credit": "Catppuccin Org" 63 | } 64 | } -------------------------------------------------------------------------------- /dist/Catppuccin-default-mocha.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#a6adc8ff", 8 | "font": "System", 9 | "color": "#bac2deff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#cdd6f4ff", 14 | "font": "System", 15 | "color": "#bac2deff" 16 | }, 17 | "backgroundSelected": "#585b70ff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#cdd6f4ff", 21 | "font": "System", 22 | "color": "#bac2deff" 23 | }, 24 | "iconPaddingHorizontal": 4, 25 | "roundness": 0, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#585b70ff", 31 | "paddingHorizontal": 8, 32 | "spacing": 8, 33 | "text": { 34 | "size": 34, 35 | "colorSelected": "#cdd6f4ff", 36 | "font": "System Light", 37 | "color": "#cdd6f4ff" 38 | }, 39 | "background": "#11111bff", 40 | "roundness": 0, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#181825ff", 45 | "paddingHorizontal": 9, 46 | "width": 560, 47 | "borderPadding": 0, 48 | "borderColor": "#11111bff", 49 | "blur": 15, 50 | "roundness": 3, 51 | "paddingVertical": 8 52 | }, 53 | "separator": { 54 | "color": "#6c7086ff", 55 | "thickness": 0 56 | }, 57 | "scrollbar": { 58 | "color": "#6c7086ff", 59 | "thickness": 2 60 | }, 61 | "name": "Catppuccin Default - Mocha", 62 | "credit": "Catppuccin Org" 63 | } 64 | } -------------------------------------------------------------------------------- /dist/Catppuccin-macOS-frappe.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#a5adceff", 8 | "font": "System", 9 | "color": "#b5bfe2ff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#c6d0f5ff", 14 | "font": "System", 15 | "color": "#b5bfe2ff" 16 | }, 17 | "backgroundSelected": "#626880ff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#c6d0f5ff", 21 | "font": "System", 22 | "color": "#b5bfe2ff" 23 | }, 24 | "iconPaddingHorizontal": 4, 25 | "roundness": 0, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#626880ff", 31 | "paddingHorizontal": 8, 32 | "spacing": 4, 33 | "text": { 34 | "size": 34, 35 | "colorSelected": "#c6d0f5ff", 36 | "font": "System Light", 37 | "color": "#c6d0f5ff" 38 | }, 39 | "background": "#232634ff", 40 | "roundness": 0, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#292c3cff", 45 | "paddingHorizontal": 0, 46 | "width": 559, 47 | "borderPadding": 0, 48 | "borderColor": "#232634ff", 49 | "blur": 15, 50 | "roundness": 3, 51 | "paddingVertical": 4 52 | }, 53 | "separator": { 54 | "color": "#737994ff", 55 | "thickness": 0 56 | }, 57 | "scrollbar": { 58 | "color": "#737994ff", 59 | "thickness": 2 60 | }, 61 | "name": "Catppuccin Macos - Frappe", 62 | "credit": "Catppuccin Org" 63 | } 64 | } -------------------------------------------------------------------------------- /dist/Catppuccin-macOS-latte.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#6c6f85ff", 8 | "font": "System", 9 | "color": "#5c5f77ff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#4c4f69ff", 14 | "font": "System", 15 | "color": "#5c5f77ff" 16 | }, 17 | "backgroundSelected": "#acb0beff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#4c4f69ff", 21 | "font": "System", 22 | "color": "#5c5f77ff" 23 | }, 24 | "iconPaddingHorizontal": 4, 25 | "roundness": 0, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#acb0beff", 31 | "paddingHorizontal": 8, 32 | "spacing": 4, 33 | "text": { 34 | "size": 34, 35 | "colorSelected": "#4c4f69ff", 36 | "font": "System Light", 37 | "color": "#4c4f69ff" 38 | }, 39 | "background": "#dce0e8ff", 40 | "roundness": 0, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#e6e9efff", 45 | "paddingHorizontal": 0, 46 | "width": 559, 47 | "borderPadding": 0, 48 | "borderColor": "#dce0e8ff", 49 | "blur": 15, 50 | "roundness": 3, 51 | "paddingVertical": 4 52 | }, 53 | "separator": { 54 | "color": "#9ca0b0ff", 55 | "thickness": 0 56 | }, 57 | "scrollbar": { 58 | "color": "#9ca0b0ff", 59 | "thickness": 2 60 | }, 61 | "name": "Catppuccin Macos - Latte", 62 | "credit": "Catppuccin Org" 63 | } 64 | } -------------------------------------------------------------------------------- /dist/Catppuccin-macOS-macchiato.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#a5adcbff", 8 | "font": "System", 9 | "color": "#b8c0e0ff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#cad3f5ff", 14 | "font": "System", 15 | "color": "#b8c0e0ff" 16 | }, 17 | "backgroundSelected": "#5b6078ff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#cad3f5ff", 21 | "font": "System", 22 | "color": "#b8c0e0ff" 23 | }, 24 | "iconPaddingHorizontal": 4, 25 | "roundness": 0, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#5b6078ff", 31 | "paddingHorizontal": 8, 32 | "spacing": 4, 33 | "text": { 34 | "size": 34, 35 | "colorSelected": "#cad3f5ff", 36 | "font": "System Light", 37 | "color": "#cad3f5ff" 38 | }, 39 | "background": "#181926ff", 40 | "roundness": 0, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#1e2030ff", 45 | "paddingHorizontal": 0, 46 | "width": 559, 47 | "borderPadding": 0, 48 | "borderColor": "#181926ff", 49 | "blur": 15, 50 | "roundness": 3, 51 | "paddingVertical": 4 52 | }, 53 | "separator": { 54 | "color": "#6e738dff", 55 | "thickness": 0 56 | }, 57 | "scrollbar": { 58 | "color": "#6e738dff", 59 | "thickness": 2 60 | }, 61 | "name": "Catppuccin Macos - Macchiato", 62 | "credit": "Catppuccin Org" 63 | } 64 | } -------------------------------------------------------------------------------- /dist/Catppuccin-macOS-mocha.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#a6adc8ff", 8 | "font": "System", 9 | "color": "#bac2deff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#cdd6f4ff", 14 | "font": "System", 15 | "color": "#bac2deff" 16 | }, 17 | "backgroundSelected": "#585b70ff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#cdd6f4ff", 21 | "font": "System", 22 | "color": "#bac2deff" 23 | }, 24 | "iconPaddingHorizontal": 4, 25 | "roundness": 0, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#585b70ff", 31 | "paddingHorizontal": 8, 32 | "spacing": 4, 33 | "text": { 34 | "size": 34, 35 | "colorSelected": "#cdd6f4ff", 36 | "font": "System Light", 37 | "color": "#cdd6f4ff" 38 | }, 39 | "background": "#11111bff", 40 | "roundness": 0, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#181825ff", 45 | "paddingHorizontal": 0, 46 | "width": 559, 47 | "borderPadding": 0, 48 | "borderColor": "#11111bff", 49 | "blur": 15, 50 | "roundness": 3, 51 | "paddingVertical": 4 52 | }, 53 | "separator": { 54 | "color": "#6c7086ff", 55 | "thickness": 0 56 | }, 57 | "scrollbar": { 58 | "color": "#6c7086ff", 59 | "thickness": 2 60 | }, 61 | "name": "Catppuccin Macos - Mocha", 62 | "credit": "Catppuccin Org" 63 | } 64 | } -------------------------------------------------------------------------------- /dist/Catppuccin-modern-frappe.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#a5adceff", 8 | "font": "System", 9 | "color": "#b5bfe2ff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#c6d0f5ff", 14 | "font": "System", 15 | "color": "#b5bfe2ff" 16 | }, 17 | "backgroundSelected": "#626880ff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#c6d0f5ff", 21 | "font": "System", 22 | "color": "#b5bfe2ff" 23 | }, 24 | "iconPaddingHorizontal": 7, 25 | "roundness": 8, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#626880ff", 31 | "paddingHorizontal": 7, 32 | "spacing": 9, 33 | "text": { 34 | "size": 36, 35 | "colorSelected": "#c6d0f5ff", 36 | "font": "System Light", 37 | "color": "#c6d0f5ff" 38 | }, 39 | "background": "#232634ff", 40 | "roundness": 8, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#292c3cff", 45 | "paddingHorizontal": 9, 46 | "width": 700, 47 | "borderPadding": 0, 48 | "borderColor": "#232634ff", 49 | "blur": 0, 50 | "roundness": 15, 51 | "paddingVertical": 9 52 | }, 53 | "visualEffectMode": 2, 54 | "separator": { 55 | "color": "#737994ff", 56 | "thickness": 0 57 | }, 58 | "scrollbar": { 59 | "color": "#737994ff", 60 | "thickness": 2 61 | }, 62 | "name": "Catppuccin Modern - Frappe", 63 | "credit": "Catppuccin Org" 64 | } 65 | } -------------------------------------------------------------------------------- /dist/Catppuccin-modern-latte.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#6c6f85ff", 8 | "font": "System", 9 | "color": "#5c5f77ff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#4c4f69ff", 14 | "font": "System", 15 | "color": "#5c5f77ff" 16 | }, 17 | "backgroundSelected": "#acb0beff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#4c4f69ff", 21 | "font": "System", 22 | "color": "#5c5f77ff" 23 | }, 24 | "iconPaddingHorizontal": 7, 25 | "roundness": 8, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#acb0beff", 31 | "paddingHorizontal": 7, 32 | "spacing": 9, 33 | "text": { 34 | "size": 36, 35 | "colorSelected": "#4c4f69ff", 36 | "font": "System Light", 37 | "color": "#4c4f69ff" 38 | }, 39 | "background": "#dce0e8ff", 40 | "roundness": 8, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#e6e9efff", 45 | "paddingHorizontal": 9, 46 | "width": 700, 47 | "borderPadding": 0, 48 | "borderColor": "#dce0e8ff", 49 | "blur": 0, 50 | "roundness": 15, 51 | "paddingVertical": 9 52 | }, 53 | "visualEffectMode": 2, 54 | "separator": { 55 | "color": "#9ca0b0ff", 56 | "thickness": 0 57 | }, 58 | "scrollbar": { 59 | "color": "#9ca0b0ff", 60 | "thickness": 2 61 | }, 62 | "name": "Catppuccin Modern - Latte", 63 | "credit": "Catppuccin Org" 64 | } 65 | } -------------------------------------------------------------------------------- /dist/Catppuccin-modern-macchiato.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#a5adcbff", 8 | "font": "System", 9 | "color": "#b8c0e0ff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#cad3f5ff", 14 | "font": "System", 15 | "color": "#b8c0e0ff" 16 | }, 17 | "backgroundSelected": "#5b6078ff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#cad3f5ff", 21 | "font": "System", 22 | "color": "#b8c0e0ff" 23 | }, 24 | "iconPaddingHorizontal": 7, 25 | "roundness": 8, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#5b6078ff", 31 | "paddingHorizontal": 7, 32 | "spacing": 9, 33 | "text": { 34 | "size": 36, 35 | "colorSelected": "#cad3f5ff", 36 | "font": "System Light", 37 | "color": "#cad3f5ff" 38 | }, 39 | "background": "#181926ff", 40 | "roundness": 8, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#1e2030ff", 45 | "paddingHorizontal": 9, 46 | "width": 700, 47 | "borderPadding": 0, 48 | "borderColor": "#181926ff", 49 | "blur": 0, 50 | "roundness": 15, 51 | "paddingVertical": 9 52 | }, 53 | "visualEffectMode": 2, 54 | "separator": { 55 | "color": "#6e738dff", 56 | "thickness": 0 57 | }, 58 | "scrollbar": { 59 | "color": "#6e738dff", 60 | "thickness": 2 61 | }, 62 | "name": "Catppuccin Modern - Macchiato", 63 | "credit": "Catppuccin Org" 64 | } 65 | } -------------------------------------------------------------------------------- /dist/Catppuccin-modern-mocha.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme": { 3 | "result": { 4 | "textSpacing": 5, 5 | "subtext": { 6 | "size": 12, 7 | "colorSelected": "#a6adc8ff", 8 | "font": "System", 9 | "color": "#bac2deff" 10 | }, 11 | "shortcut": { 12 | "size": 16, 13 | "colorSelected": "#cdd6f4ff", 14 | "font": "System", 15 | "color": "#bac2deff" 16 | }, 17 | "backgroundSelected": "#585b70ff", 18 | "text": { 19 | "size": 18, 20 | "colorSelected": "#cdd6f4ff", 21 | "font": "System", 22 | "color": "#bac2deff" 23 | }, 24 | "iconPaddingHorizontal": 7, 25 | "roundness": 8, 26 | "paddingVertical": 3, 27 | "iconSize": 40 28 | }, 29 | "search": { 30 | "backgroundSelected": "#585b70ff", 31 | "paddingHorizontal": 7, 32 | "spacing": 9, 33 | "text": { 34 | "size": 36, 35 | "colorSelected": "#cdd6f4ff", 36 | "font": "System Light", 37 | "color": "#cdd6f4ff" 38 | }, 39 | "background": "#11111bff", 40 | "roundness": 8, 41 | "paddingVertical": 5 42 | }, 43 | "window": { 44 | "color": "#181825ff", 45 | "paddingHorizontal": 9, 46 | "width": 700, 47 | "borderPadding": 0, 48 | "borderColor": "#11111bff", 49 | "blur": 0, 50 | "roundness": 15, 51 | "paddingVertical": 9 52 | }, 53 | "visualEffectMode": 2, 54 | "separator": { 55 | "color": "#6c7086ff", 56 | "thickness": 0 57 | }, 58 | "scrollbar": { 59 | "color": "#6c7086ff", 60 | "thickness": 2 61 | }, 62 | "name": "Catppuccin Modern - Mocha", 63 | "credit": "Catppuccin Org" 64 | } 65 | } -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "local>catppuccin/renovate-config" 5 | ] 6 | } 7 | --------------------------------------------------------------------------------