├── .catppuccin.yaml ├── .editorconfig ├── LICENSE ├── README.md ├── assets ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp └── preview.webp └── themes ├── Frappe ├── README.md ├── preview.png ├── preview.png.license ├── theme.json ├── theme.json.license └── themeStyle.css ├── Latte ├── README.md ├── preview.png ├── preview.png.license ├── theme.json ├── theme.json.license └── themeStyle.css ├── Macchiato ├── README.md ├── preview.png ├── preview.png.license ├── theme.json ├── theme.json.license └── themeStyle.css └── Mocha ├── README.md ├── preview.png ├── preview.png.license ├── theme.json ├── theme.json.license └── themeStyle.css /.catppuccin.yaml: -------------------------------------------------------------------------------- 1 | app_name: prismlauncher 2 | binary_name: prismlauncher 3 | installation: 4 | location: 5 | macos: ~/Library/Application Support/PrismLauncher/ 6 | linux: ~/.local/share/PrismLauncher/ 7 | windows: "%appdata%/PrismLauncher/" 8 | flavours: 9 | all: 10 | default: 11 | - themes/ 12 | latte: 13 | default: 14 | - themes/Latte/Catppuccin-Latte.zip 15 | frappe: 16 | default: 17 | - themes/Frappe/Catppuccin-Frappe.zip 18 | macchiato: 19 | default: 20 | - themes/Macchiato/Catppuccin-Macchiato.zip 21 | mocha: 22 | default: 23 | - themes/Mocha/Catppuccin-Mocha.zip 24 | to: themes/ 25 | one_flavour: false -------------------------------------------------------------------------------- /.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) 2022 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 |
78 |
79 |
82 | Copyright © 2021-present Catppuccin Org 83 |
84 | 85 | 88 | -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/prismlauncher/2edbdf5295bc3c12c3dd53b203ab91028fce2c54/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/prismlauncher/2edbdf5295bc3c12c3dd53b203ab91028fce2c54/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/prismlauncher/2edbdf5295bc3c12c3dd53b203ab91028fce2c54/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/prismlauncher/2edbdf5295bc3c12c3dd53b203ab91028fce2c54/assets/mocha.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/prismlauncher/2edbdf5295bc3c12c3dd53b203ab91028fce2c54/assets/preview.webp -------------------------------------------------------------------------------- /themes/Frappe/README.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | Catppuccin-Frappe 8 | --- 9 | [Catppuccin-Frappe](https://github.com/catppuccin/catppuccin) theme for Prism Launcher. 10 | 11 | ## Preview 12 |  13 | 14 | ## License 15 | ``` 16 | MIT License 17 | 18 | Copyright (c) 2021 Catppuccin 19 | 20 | Permission is hereby granted, free of charge, to any person obtaining a copy 21 | of this software and associated documentation files (the "Software"), to deal 22 | in the Software without restriction, including without limitation the rights 23 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 24 | copies of the Software, and to permit persons to whom the Software is 25 | furnished to do so, subject to the following conditions: 26 | 27 | The above copyright notice and this permission notice shall be included in all 28 | copies or substantial portions of the Software. 29 | 30 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 31 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 32 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 33 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 34 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 35 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 36 | SOFTWARE. 37 | ``` 38 | -------------------------------------------------------------------------------- /themes/Frappe/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/prismlauncher/2edbdf5295bc3c12c3dd53b203ab91028fce2c54/themes/Frappe/preview.png -------------------------------------------------------------------------------- /themes/Frappe/preview.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Derpitron 2 | 3 | SPDX-License-Identifier: CC0-1.0 4 | -------------------------------------------------------------------------------- /themes/Frappe/theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors": { 3 | "AlternateBase": "#303446", 4 | "Base": "#292c3c", 5 | "BrightText": "#b5bfe2", 6 | "Button": "#414559", 7 | "ButtonText": "#c6d0f5", 8 | "Highlight": "#babbf1", 9 | "HighlightedText": "#303446", 10 | "Link": "#babbf1", 11 | "Text": "#c6d0f5", 12 | "ToolTipBase": "#dee5fc", 13 | "ToolTipText": "#dee5fc", 14 | "Window": "#303446", 15 | "WindowText": "#b5bfe2", 16 | "fadeAmount": 0.5, 17 | "fadeColor": "#737994" 18 | }, 19 | "name": "Catppuccin Frappé", 20 | "widgets": "Fusion" 21 | } 22 | -------------------------------------------------------------------------------- /themes/Frappe/theme.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Catppuccin 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /themes/Frappe/themeStyle.css: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 Catppuccin 3 | * 4 | * SPDX-License-Identifier: MIT 5 | */ 6 | 7 | QToolTip { 8 | color: #c6d0f5; 9 | background-color: #414559; 10 | border: 1px solid #414559 11 | } -------------------------------------------------------------------------------- /themes/Latte/README.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | Catppuccin-Latte 8 | --- 9 | [Catppuccin-Latte](https://github.com/catppuccin/catppuccin) theme for Prism Launcher. 10 | 11 | ## Preview 12 |  13 | 14 | ## License 15 | ``` 16 | MIT License 17 | 18 | Copyright (c) 2021 Catppuccin 19 | 20 | Permission is hereby granted, free of charge, to any person obtaining a copy 21 | of this software and associated documentation files (the "Software"), to deal 22 | in the Software without restriction, including without limitation the rights 23 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 24 | copies of the Software, and to permit persons to whom the Software is 25 | furnished to do so, subject to the following conditions: 26 | 27 | The above copyright notice and this permission notice shall be included in all 28 | copies or substantial portions of the Software. 29 | 30 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 31 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 32 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 33 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 34 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 35 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 36 | SOFTWARE. 37 | ``` 38 | -------------------------------------------------------------------------------- /themes/Latte/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/prismlauncher/2edbdf5295bc3c12c3dd53b203ab91028fce2c54/themes/Latte/preview.png -------------------------------------------------------------------------------- /themes/Latte/preview.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Derpitron 2 | 3 | SPDX-License-Identifier: CC0-1.0 4 | -------------------------------------------------------------------------------- /themes/Latte/theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors": { 3 | "AlternateBase": "#eff1f5", 4 | "Base": "#e6e9ef", 5 | "BrightText": "#5c5f77", 6 | "Button": "#ccd0da", 7 | "ButtonText": "#4c4f69", 8 | "Highlight": "#b4befe", 9 | "HighlightedText": "#1e1e2e", 10 | "Link": "#7287fd", 11 | "Text": "#4c4f69", 12 | "ToolTipBase": "#dee5fc", 13 | "ToolTipText": "#dee5fc", 14 | "Window": "#ccd0da", 15 | "WindowText": "#5c5f77", 16 | "fadeAmount": 0.5, 17 | "fadeColor": "#9ca0b0" 18 | }, 19 | "name": "Catppuccin Latte", 20 | "widgets": "Fusion" 21 | } 22 | -------------------------------------------------------------------------------- /themes/Latte/theme.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Catppuccin 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /themes/Latte/themeStyle.css: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 Catppuccin 3 | * 4 | * SPDX-License-Identifier: MIT 5 | */ 6 | 7 | QToolTip { 8 | color: #4c4f69; 9 | background-color: #ccd0da; 10 | border: 1px solid #ccd0da 11 | } -------------------------------------------------------------------------------- /themes/Macchiato/README.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | Catppuccin-Macchiato 8 | --- 9 | [Catppuccin-Macchiato](https://github.com/catppuccin/catppuccin) theme for Prism Launcher. 10 | 11 | ## Preview 12 |  13 | 14 | ## License 15 | ``` 16 | MIT License 17 | 18 | Copyright (c) 2021 Catppuccin 19 | 20 | Permission is hereby granted, free of charge, to any person obtaining a copy 21 | of this software and associated documentation files (the "Software"), to deal 22 | in the Software without restriction, including without limitation the rights 23 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 24 | copies of the Software, and to permit persons to whom the Software is 25 | furnished to do so, subject to the following conditions: 26 | 27 | The above copyright notice and this permission notice shall be included in all 28 | copies or substantial portions of the Software. 29 | 30 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 31 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 32 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 33 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 34 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 35 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 36 | SOFTWARE. 37 | ``` 38 | -------------------------------------------------------------------------------- /themes/Macchiato/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/prismlauncher/2edbdf5295bc3c12c3dd53b203ab91028fce2c54/themes/Macchiato/preview.png -------------------------------------------------------------------------------- /themes/Macchiato/preview.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Derpitron 2 | 3 | SPDX-License-Identifier: CC0-1.0 4 | -------------------------------------------------------------------------------- /themes/Macchiato/theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors": { 3 | "AlternateBase": "#24273a", 4 | "Base": "#1e2030", 5 | "BrightText": "#b8c0e0", 6 | "Button": "#363a4f", 7 | "ButtonText": "#cad3f5", 8 | "Highlight": "#b7bdf8", 9 | "HighlightedText": "#24273a", 10 | "Link": "#b7bdf8", 11 | "Text": "#cad3f5", 12 | "ToolTipBase": "#dee5fc", 13 | "ToolTipText": "#dee5fc", 14 | "Window": "#24273a", 15 | "WindowText": "#b8c0e0", 16 | "fadeAmount": 0.5, 17 | "fadeColor": "#6e738d" 18 | }, 19 | "name": "Catppuccin Macchiato", 20 | "widgets": "Fusion" 21 | } 22 | -------------------------------------------------------------------------------- /themes/Macchiato/theme.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Catppuccin 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /themes/Macchiato/themeStyle.css: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 Catppuccin 3 | * 4 | * SPDX-License-Identifier: MIT 5 | */ 6 | 7 | QToolTip { 8 | color: #cad3f5; 9 | background-color: #363a4f; 10 | border: 1px solid #363a4f 11 | } -------------------------------------------------------------------------------- /themes/Mocha/README.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | Catppuccin-Mocha 8 | --- 9 | [Catppuccin-Mocha](https://github.com/catppuccin/catppuccin) theme for Prism Launcher. 10 | 11 | ## Preview 12 |  13 | 14 | ## License 15 | ``` 16 | MIT License 17 | 18 | Copyright (c) 2021 Catppuccin 19 | 20 | Permission is hereby granted, free of charge, to any person obtaining a copy 21 | of this software and associated documentation files (the "Software"), to deal 22 | in the Software without restriction, including without limitation the rights 23 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 24 | copies of the Software, and to permit persons to whom the Software is 25 | furnished to do so, subject to the following conditions: 26 | 27 | The above copyright notice and this permission notice shall be included in all 28 | copies or substantial portions of the Software. 29 | 30 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 31 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 32 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 33 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 34 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 35 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 36 | SOFTWARE. 37 | ``` 38 | -------------------------------------------------------------------------------- /themes/Mocha/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/prismlauncher/2edbdf5295bc3c12c3dd53b203ab91028fce2c54/themes/Mocha/preview.png -------------------------------------------------------------------------------- /themes/Mocha/preview.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Derpitron 2 | 3 | SPDX-License-Identifier: CC0-1.0 4 | -------------------------------------------------------------------------------- /themes/Mocha/theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors": { 3 | "AlternateBase": "#1e1e2e", 4 | "Base": "#181825", 5 | "BrightText": "#bac2de", 6 | "Button": "#313244", 7 | "ButtonText": "#cdd6f4", 8 | "Highlight": "#b4befe", 9 | "HighlightedText": "#1e1e2e", 10 | "Link": "#b4befe", 11 | "Text": "#cdd6f4", 12 | "ToolTipBase": "#dee5fc", 13 | "ToolTipText": "#dee5fc", 14 | "Window": "#1e1e2e", 15 | "WindowText": "#bac2de", 16 | "fadeAmount": 0.5, 17 | "fadeColor": "#6c7086" 18 | }, 19 | "name": "Catppuccin Mocha", 20 | "widgets": "Fusion" 21 | } 22 | -------------------------------------------------------------------------------- /themes/Mocha/theme.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Catppuccin 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /themes/Mocha/themeStyle.css: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-FileCopyrightText: 2022 Catppuccin 3 | * 4 | * SPDX-License-Identifier: MIT 5 | */ 6 | 7 | QToolTip { 8 | color: #cdd6f4; 9 | background-color: #313244; 10 | border: 1px solid #313244 11 | } --------------------------------------------------------------------------------