├── .editorconfig ├── LICENSE ├── README.md ├── assets ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp └── preview.webp ├── justfile ├── raycast.tera └── 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 |

2 | Logo
3 | 4 | Catppuccin for Raycast 5 | 6 |

7 | 8 |

9 | 10 | 11 | 12 |

13 | 14 |

15 | 16 |

17 | 18 | ## Previews 19 |
20 | 🌻 Latte 21 | 22 |
23 |
24 | 🪴 Frappé 25 | 26 |
27 |
28 | 🌺 Macchiato 29 | 30 |
31 |
32 | 🌿 Mocha 33 | 34 |
35 | 36 | ## Usage 37 | 38 | Click one of the following links to install the theme to your profile: 39 | - [🌻 Latte](https://themes.ray.so?version=1&name=Catppuccin%20Latte&colors=%23eff1f5,%23eff1f5,%234c4f69,%239ca0b0,%238c8fa1,%23d20f39,%23fe640b,%23df8e1d,%2340a02b,%231e66f5,%237287fd,%238839ef&appearance=light) 40 | - [🪴 Frappé](https://themes.ray.so?version=1&name=Catppuccin%20Frappé&colors=%23303446,%23303446,%23c6d0f5,%23737994,%23838ba7,%23e78284,%23ef9f76,%23e5c890,%23a6d189,%238caaee,%23babbf1,%23ca9ee6&appearance=dark) 41 | - [🌺 Macchiato](https://themes.ray.so?version=1&name=Catppuccin%20Macchiato&colors=%2324273a,%2324273a,%23cad3f5,%236e738d,%238087a2,%23ed8796,%23f5a97f,%23eed49f,%23a6da95,%238aadf4,%23b7bdf8,%23c6a0f6&appearance=dark) 42 | - [🌿 Mocha](https://themes.ray.so?version=1&name=Catppuccin%20Mocha&colors=%231e1e2e,%231e1e2e,%23cdd6f4,%236c7086,%237f849c,%23f38ba8,%23fab387,%23f9e2af,%23a6e3a1,%2389b4fa,%23b4befe,%23cba6f7&appearance=dark) 43 | 44 | ## 🙋 FAQ 45 | 46 | - Q: **_"Why do I need Pro to install this theme?"_**\ 47 | A: Sadly themes need a subscription to Raycast Pro to be enabled. 48 | It's not ideal, but if you happen to have Raycast Pro these are designed for 49 | you. 50 | 51 | ## 💝 Thanks to 52 | 53 | - [RayhanADev](https://github.com/rayhanadev) 54 | 55 |   56 | 57 |

58 | 59 |

60 | 61 |

62 | Copyright © 2021-present Catppuccin Org 63 |

64 | 65 |

66 | 67 |

68 | -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/raycast/25da988565a5f9a36ccbda53d2d960e43d3c35c0/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/raycast/25da988565a5f9a36ccbda53d2d960e43d3c35c0/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/raycast/25da988565a5f9a36ccbda53d2d960e43d3c35c0/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/raycast/25da988565a5f9a36ccbda53d2d960e43d3c35c0/assets/mocha.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/raycast/25da988565a5f9a36ccbda53d2d960e43d3c35c0/assets/preview.webp -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | _default: 2 | @just --list 3 | 4 | build: 5 | whiskers raycast.tera 6 | -------------------------------------------------------------------------------- /raycast.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: "2.2.0" 4 | filename: "README.md" 5 | --- 6 |

7 | Logo
8 | 9 | Catppuccin for Raycast 10 | 11 |

12 | 13 |

14 | 15 | 16 | 17 |

18 | 19 |

20 | 21 |

22 | 23 | ## Previews 24 | 25 | {%- for _, flavor in flavors %} 26 |
27 | {{ flavor.emoji }} {{ flavor.name }} 28 | 29 |
30 | {%- endfor %} 31 | 32 | ## Usage 33 | 34 | Click one of the following links to install the theme to your profile: 35 | 36 | {%- for _, flavor in flavors -%} 37 | {%- set palette = flavor.colors %} 38 | - [{{ flavor.emoji }} {{ flavor.name }}](https://themes.ray.so?version=1&name=Catppuccin%20{{ flavor.name }}&colors=%23{{ [palette.base, palette.base, palette.text, palette.overlay0, palette.overlay1, palette.red, palette.peach, palette.yellow, palette.green, palette.blue, palette.lavender, palette.mauve] | map(attribute="hex") | join(sep=",%23") }}&appearance={%- if flavor.dark == true -%}dark{%- else -%}light{%- endif -%}) 39 | {%- endfor %} 40 | 41 | ## 🙋 FAQ 42 | 43 | - Q: **_"Why do I need Pro to install this theme?"_**\ 44 | A: Sadly themes need a subscription to Raycast Pro to be enabled. 45 | It's not ideal, but if you happen to have Raycast Pro these are designed for 46 | you. 47 | 48 | ## 💝 Thanks to 49 | 50 | - [RayhanADev](https://github.com/rayhanadev) 51 | 52 |   53 | 54 |

55 | 56 |

57 | 58 |

59 | Copyright © 2021-present Catppuccin Org 60 |

61 | 62 |

63 | 64 |

65 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "local>catppuccin/renovate-config" 5 | ] 6 | } 7 | --------------------------------------------------------------------------------