├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── preset_issue.yml │ ├── preset_proposal.yml │ └── preset_request.yml ├── pull_request_template.md └── workflows │ └── generate-preset-lists.yml ├── LICENSE ├── README.md ├── curated.json ├── curated ├── abyssal-elementals.json ├── adwaita-black.json ├── alpha-black.json ├── alpha-dark.json ├── alpha-mac.json ├── alpha-tritanopia.json ├── apprentice.json ├── astral-elementals.json ├── ayu-dark.json ├── breeze-dark.json ├── breeze-light.json ├── canta-dark.json ├── catppuccin-frappe.json ├── catppuccin-latte.json ├── crystal-clear.json ├── cyberhack.json ├── dracula-dark.json ├── dracula.json ├── everblush.json ├── everforest.json ├── feren-os-2020.json ├── feren-os-dark-2020.json ├── golden-foyer.json ├── gruvbox.json ├── jungle-jaunt.json ├── kanagawa.json ├── layan-dark.json ├── layan.json ├── matcha-sea.json ├── mica-blue.json ├── mint-y-dark ├── nord-dark.json ├── nord-light.json ├── nord-semi-light.json ├── nord.json ├── norway.json ├── one-dark-pro.json ├── otto.json ├── partii.json ├── pop-dark.json ├── pop.json ├── pretty-green.json ├── rose-pine-dawn.json ├── rose-pine-moon.json ├── rose-pine.json ├── solarized-dark.json ├── solarized.json ├── surgubbe.json ├── synthwave.json ├── tango.json ├── ventura.json ├── windows-95.json ├── yaru-bark-dark.json ├── yaru-bark.json ├── yaru-dark.json ├── yaru.json ├── zenburn.json ├── zorin-os-16-blue-dark.json ├── zorin-os-16-blue.json ├── zorin-os-16-green-dark.json ├── zorin-os-16-green.json ├── zorin-os-16-grey-dark.json ├── zorin-os-16-grey.json ├── zorin-os-16-orange-dark.json ├── zorin-os-16-orange.json ├── zorin-os-16-purple-dark.json ├── zorin-os-16-purple.json ├── zorin-os-16-red-dark.json └── zorin-os-16-red.json ├── official.json ├── official ├── builder-dark.json ├── builder.json ├── catppuccin-frappe.json ├── catppuccin-latte.json ├── catppuccin-macchiato.json ├── catppuccin-mocha.json ├── classic-dark.json ├── classic.json ├── cobalt-dark.json ├── cobalt.json ├── everforest-dark.json ├── everforest.json ├── gruvbox-dark.json ├── gruvbox.json ├── kate-dark.json ├── kate.json ├── night-owl.json ├── oblivion.json ├── peninsula-dark.json ├── peninsula.json ├── pretty-purple.json ├── solarized-dark.json ├── solarized.json ├── tango.json ├── tokyonight-dark.json ├── tokyonight-moon.json ├── tokyonight-storm.json └── tokyonight.json └── scripts ├── generate-preset-lists.sh ├── update-curated.py └── update-official.py /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: 🚀 GitHub Community 4 | url: https://github.com/orgs/GradienceTeam/discussions 5 | about: Please ask and answer questions here. 6 | - name: 📬 Matrix 7 | url: https://matrix.to/#/#Gradience:matrix.org 8 | about: Chat on matrix. 9 | - name: 🎁️ Share your presets 10 | url: https://GitHub.com/Gradienceteam/Community 11 | about: Share your presets and see them in the explore tab 12 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/preset_issue.yml: -------------------------------------------------------------------------------- 1 | name: "🐛 Preset issue" 2 | description: If you found an issue with a preset 3 | title: "preset: " 4 | labels: ["bug"] 5 | assignees: 6 | - daudix-UFO 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | Thanks for taking the time to contribute! 12 | - type: textarea 13 | id: description 14 | attributes: 15 | label: Issue 16 | description: A clear and concise description of the issue 17 | validations: 18 | required: true 19 | - type: textarea 20 | attributes: 21 | label: Screenshots 22 | description: If applicable, add screenshots to help explain your problem. 23 | 24 | - type: markdown 25 | attributes: 26 | value: "## System" 27 | 28 | - type: input 29 | attributes: 30 | label: OS 31 | description: On which system do you run the app? 32 | placeholder: Fedora Linux 36 (Workstation Edition) 33 | 34 | - type: input 35 | attributes: 36 | label: Version 37 | description: Which version of the app do you use? 38 | placeholder: "1.2.0" 39 | 40 | - type: dropdown 41 | attributes: 42 | label: Installation method 43 | description: How did you install Gradience ? 44 | options: 45 | - Flatpak from Flathub 46 | - Flatpak from Github Actions - main 47 | - Flatpak from GitHub Actions - next 48 | - Flatpak from manual build - main 49 | - Flatpak from manual build - next 50 | - AUR 51 | - Manual using meson - main 52 | - Manual using meson - next 53 | - Other 54 | validations: 55 | required: true 56 | 57 | - type: textarea 58 | attributes: 59 | label: Additional context 60 | description: Add any other context about the problem here. 61 | - type: checkboxes 62 | attributes: 63 | label: Did you read the Code of Conduct? 64 | options: 65 | - label: I have read the [Code of Conduct](https://github.com/GradienceTeam/Gradience/blob/main/CODE_OF_CONDUCT.md). 66 | required: true 67 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/preset_proposal.yml: -------------------------------------------------------------------------------- 1 | name: "📝️ Change proposal" 2 | description: Propose a change in current presets schema, or in the way presets are implemented 3 | title: "propose: " 4 | labels: ["enhancement"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thank you for taking the time to contribute! 10 | 11 | - type: textarea 12 | id: proposal-body 13 | attributes: 14 | label: Proposal body 15 | description: A clear and concise proposal text. 16 | validations: 17 | required: true 18 | 19 | - type: textarea 20 | attributes: 21 | label: Additional context 22 | description: Add any other context about the proposal here. 23 | 24 | - type: checkboxes 25 | attributes: 26 | label: Did you read the Code of Conduct? 27 | options: 28 | - label: I have read the [Code of Conduct](https://github.com/GradienceTeam/Gradience/blob/main/CODE_OF_CONDUCT.md). 29 | required: true 30 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/preset_request.yml: -------------------------------------------------------------------------------- 1 | name: "💡 Preset request" 2 | description: Suggest an preset 3 | title: "preset: " 4 | labels: ["enhancement", "preset request"] 5 | assignees: 6 | - daudix-UFO 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | Thanks for taking the time to contribute! 12 | - type: textarea 13 | id: description 14 | attributes: 15 | label: Preset description 16 | description: A clear and concise description of what preset is requested. Please include link to the original color palette 17 | validations: 18 | required: true 19 | - type: textarea 20 | id: additional 21 | attributes: 22 | label: Additional Context 23 | description: List any other information that is relevant to your request, such as perfered color variant, color of specific element and etc. 24 | validations: 25 | required: false 26 | - type: checkboxes 27 | attributes: 28 | label: Did you read the Code of Conduct? 29 | options: 30 | - label: I have read the [Code of Conduct](https://github.com/GradienceTeam/Gradience/blob/main/CODE_OF_CONDUCT.md). 31 | required: true 32 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | # New Preset: 2 | 3 | 4 | 5 | ## Description 6 | 7 | 8 | 9 | ## Palette 10 | 11 | 12 | 13 | - [ ] None 14 | 15 | ## Screenshots (optional) 16 | 17 | 18 | 19 | ## Wallpaper 20 | 21 | 22 | 23 | # Checklist 24 | 25 | Before submitting the PR, I checked: 26 | 27 | - [ ] I've only modified one preset 28 | - [ ] I've checked the format of each json files I modified 29 | - [ ] (optional) I've added screenshots 30 | - [ ] The preset name is following preset naming guidelines. 31 | 32 | ## Publication 33 | 34 | - [ ] I want to add my preset in the preset list. 35 | 36 | Thanks for your submission we will review and merge it as quick as possible. 37 | -------------------------------------------------------------------------------- /.github/workflows/generate-preset-lists.yml: -------------------------------------------------------------------------------- 1 | # Change the look of Adwaita, with ease 2 | # Copyright (C) 2022 Gradience Team 3 | # 4 | # This program is free software: you can redistribute it and/or modify 5 | # it under the terms of the GNU General Public License as published by 6 | # the Free Software Foundation, either version 3 of the License, or 7 | # (at your option) any later version. 8 | # 9 | # This program is distributed in the hope that it will be useful, 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | # GNU General Public License for more details. 13 | # 14 | # You should have received a copy of the GNU General Public License 15 | # along with this program. If not, see . 16 | 17 | # Scripts are created by @dominichayesferen for Gradience Team 18 | 19 | 20 | name: Generate preset lists 21 | 22 | on: 23 | push: 24 | branches: [ "next" ] 25 | schedule: 26 | - cron: '0 0,12 * * *' 27 | workflow_dispatch: 28 | 29 | jobs: 30 | build: 31 | runs-on: ubuntu-latest 32 | steps: 33 | - uses: actions/checkout@v3 34 | 35 | - uses: actions/setup-python@v4 36 | with: 37 | python-version: '3.10' 38 | 39 | - name: Run the script 40 | run: sh scripts/generate-preset-lists.sh 41 | -------------------------------------------------------------------------------- /curated/adwaita-black.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Adwaita Black", 3 | "variables": { 4 | "accent_color": "#3584e4", 5 | "accent_bg_color": "#1a5fb4", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#e01b24", 8 | "destructive_bg_color": "#a51d2d", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#33d17a", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f6d32d", 14 | "warning_bg_color": "#e5a50a", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#ff7800", 17 | "error_bg_color": "#c64600", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#000000", 20 | "window_fg_color": "#ffffff", 21 | "view_bg_color": "#1e1e1e", 22 | "view_fg_color": "#ffffff", 23 | "headerbar_bg_color": "#1e1e1e", 24 | "headerbar_fg_color": "#ffffff", 25 | "headerbar_border_color": "#3d3846", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#ffffff", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#383838", 32 | "dialog_fg_color": "#ffffff", 33 | "popover_bg_color": "#1e1e1e", 34 | "popover_fg_color": "#ffffff", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/breeze-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Breeze Dark", 3 | "variables": { 4 | "accent_color": "#3daee9", 5 | "accent_bg_color": "#3daee9", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#da4453", 8 | "destructive_bg_color": "#da4453", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#27ae60", 11 | "success_bg_color": "#27ae60", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f67400", 14 | "warning_bg_color": "#f67400", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#da4453", 17 | "error_bg_color": "#da4453", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#2a2e32", 20 | "window_fg_color": "#fcfcfc", 21 | "view_bg_color": "#1b1e20", 22 | "view_fg_color": "#fcfcfc", 23 | "headerbar_bg_color": "#31363b", 24 | "headerbar_fg_color": "#fcfcfc", 25 | "headerbar_border_color": "#fcfcfc", 26 | "headerbar_backdrop_color": "#2a2e32", 27 | "headerbar_shade_color": "rgba(255, 255, 255, 0.09)", 28 | "card_bg_color": "#1b1e20", 29 | "card_fg_color": "#fcfcfc", 30 | "card_shade_color": "rgba(255, 255, 255, 0.09)", 31 | "dialog_bg_color": "#2a2e32", 32 | "dialog_fg_color": "#fcfcfc", 33 | "popover_bg_color": "#1b1e20", 34 | "popover_fg_color": "#fcfcfc", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/breeze-light.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Breeze Light", 3 | "variables": { 4 | "accent_color": "#3daee9", 5 | "accent_bg_color": "#3daee9", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#da4453", 8 | "destructive_bg_color": "#da4453", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#27ae60", 11 | "success_bg_color": "#27ae60", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f67400", 14 | "warning_bg_color": "#f67400", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#da4453", 17 | "error_bg_color": "#da4453", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#eff0f1", 20 | "window_fg_color": "#232629", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#232629", 23 | "headerbar_bg_color": "#dee0e2", 24 | "headerbar_fg_color": "#232629", 25 | "headerbar_border_color": "#232629", 26 | "headerbar_backdrop_color": "#eff0f1", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.09)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#232629", 30 | "card_shade_color": "rgba(0, 0, 0, 0.09)", 31 | "dialog_bg_color": "#eff0f1", 32 | "dialog_fg_color": "#232629", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#232629", 35 | "shade_color": "rgba(0, 0, 0, 0.09)", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } -------------------------------------------------------------------------------- /curated/canta-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Canta Dark", 3 | "variables": { 4 | "accent_color": "#00ffbd", 5 | "accent_bg_color": "#00b788", 6 | "accent_fg_color": "#fff", 7 | "destructive_color": "#ff7b63", 8 | "destructive_bg_color": "#c01c28", 9 | "destructive_fg_color": "#fff", 10 | "success_color": "#8ff0a4", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#fff", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#cd9309", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#ff7b63", 17 | "error_bg_color": "#c01c28", 18 | "error_fg_color": "#fff", 19 | "window_bg_color": "#343938", 20 | "window_fg_color": "#fff", 21 | "view_bg_color": "#3f4544", 22 | "view_fg_color": "#fff", 23 | "headerbar_bg_color": "#3b4342", 24 | "headerbar_fg_color": "#fff", 25 | "headerbar_border_color": "#fff", 26 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 27 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 28 | "card_fg_color": "#fff", 29 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 30 | "dialog_bg_color": "rgb(60,66,65)", 31 | "dialog_fg_color": "#fff", 32 | "popover_bg_color": "rgb(63, 69, 68)", 33 | "popover_fg_color": "#fff", 34 | "shade_color": "#383838", 35 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 36 | }, 37 | "palette": { 38 | "blue_": { 39 | "1": "#99c1f1", 40 | "2": "#62a0ea", 41 | "3": "#3584e4", 42 | "4": "#1c71d8", 43 | "5": "#1a5fb4" 44 | }, 45 | "green_": { 46 | "1": "#8ff0a4", 47 | "2": "#57e389", 48 | "3": "#33d17a", 49 | "4": "#2ec27e", 50 | "5": "#26a269" 51 | }, 52 | "yellow_": { 53 | "1": "#f9f06b", 54 | "2": "#f8e45c", 55 | "3": "#f6d32d", 56 | "4": "#f5c211", 57 | "5": "#e5a50a" 58 | }, 59 | "orange_": { 60 | "1": "#ffbe6f", 61 | "2": "#ffa348", 62 | "3": "#ff7800", 63 | "4": "#e66100", 64 | "5": "#c64600" 65 | }, 66 | "red_": { 67 | "1": "#f66151", 68 | "2": "#ed333b", 69 | "3": "#e01b24", 70 | "4": "#c01c28", 71 | "5": "#a51d2d" 72 | }, 73 | "purple_": { 74 | "1": "#dc8add", 75 | "2": "#c061cb", 76 | "3": "#9141ac", 77 | "4": "#813d9c", 78 | "5": "#613583" 79 | }, 80 | "brown_": { 81 | "1": "#cdab8f", 82 | "2": "#b5835a", 83 | "3": "#986a44", 84 | "4": "#865e3c", 85 | "5": "#63452c" 86 | }, 87 | "light_": { 88 | "1": "#fff", 89 | "2": "#f6f5f4", 90 | "3": "#deddda", 91 | "4": "#c0bfbc", 92 | "5": "#9a9996" 93 | }, 94 | "dark_": { 95 | "1": "#77767b", 96 | "2": "#5e5c64", 97 | "3": "#3d3846", 98 | "4": "#241f31", 99 | "5": "#000" 100 | } 101 | }, 102 | "custom_css": { 103 | "gtk4": "", 104 | "gtk3": "" 105 | }, 106 | "plugins": {} 107 | } 108 | -------------------------------------------------------------------------------- /curated/crystal-clear.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Crystal Clear", 3 | "variables": { 4 | "accent_color": "rgb(142,40,176)", 5 | "accent_bg_color": "rgb(169,0,255)", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff7b63", 8 | "destructive_bg_color": "#c01c28", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#8ff0a4", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#cd9309", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#ff7b63", 17 | "error_bg_color": "#c01c28", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "rgb(36,31,49)", 20 | "window_fg_color": "rgb(255,255,255)", 21 | "view_bg_color": "rgb(36,31,49)", 22 | "view_fg_color": "rgb(255,255,255)", 23 | "headerbar_bg_color": "rgb(36,31,49)", 24 | "headerbar_fg_color": "rgb(255,255,255)", 25 | "headerbar_border_color": "rgba(0,0,0,0)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0,0,0,0.25)", 28 | "card_bg_color": "rgba(255,255,255,0.08)", 29 | "card_fg_color": "#ffffff", 30 | "card_shade_color": "rgba(0,0,0,0.25)", 31 | "dialog_bg_color": "rgb(36,31,49)", 32 | "dialog_fg_color": "#ffffff", 33 | "popover_bg_color": "rgb(36,31,49)", 34 | "popover_fg_color": "#ffffff", 35 | "shade_color": "rgba(0,0,0,0.36)", 36 | "scrollbar_outline_color": "rgb(0,0,0)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /curated/feren-os-2020.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feren OS (2020)", 3 | "variables": { 4 | "accent_color": "#006aff", 5 | "accent_bg_color": "#006aff", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#dc293b", 8 | "destructive_bg_color": "#dc293b", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#169c39", 11 | "success_bg_color": "#169c39", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#e36b1a", 14 | "warning_bg_color": "#e36b1a", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#dc293b", 17 | "error_bg_color": "#dc293b", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#dcdcdc", 20 | "window_fg_color": "#000000", 21 | "view_bg_color": "#f1f1f1", 22 | "view_fg_color": "#000000", 23 | "headerbar_bg_color": "#dcdcdc", 24 | "headerbar_fg_color": "#000000", 25 | "headerbar_border_color": "#000000", 26 | "headerbar_backdrop_color": "#dcdcdc", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.19)", 28 | "card_bg_color": "#f1f1f1", 29 | "card_fg_color": "#000000", 30 | "card_shade_color": "rgba(0, 0, 0, 0.19)", 31 | "dialog_bg_color": "#dcdcdc", 32 | "dialog_fg_color": "#000000", 33 | "popover_bg_color": "#f1f1f1", 34 | "popover_fg_color": "#000000", 35 | "shade_color": "rgba(0, 0, 0, 0.19)", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/feren-os-dark-2020.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Feren OS Dark (2020)", 3 | "variables": { 4 | "accent_color": "#006aff", 5 | "accent_bg_color": "#006aff", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#cf2737", 8 | "destructive_bg_color": "#cf2737", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#169137", 11 | "success_bg_color": "#169137", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#e36b1a", 14 | "warning_bg_color": "#e36b1a", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#cf2737", 17 | "error_bg_color": "#cf2737", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#222222", 20 | "window_fg_color": "#ffffff", 21 | "view_bg_color": "#323232", 22 | "view_fg_color": "#ffffff", 23 | "headerbar_bg_color": "#222222", 24 | "headerbar_fg_color": "#ffffff", 25 | "headerbar_border_color": "#000000", 26 | "headerbar_backdrop_color": "#222222", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.19)", 28 | "card_bg_color": "#323232", 29 | "card_fg_color": "#ffffff", 30 | "card_shade_color": "rgba(0, 0, 0, 0.19)", 31 | "dialog_bg_color": "#222222", 32 | "dialog_fg_color": "#ffffff", 33 | "popover_bg_color": "#323232", 34 | "popover_fg_color": "#ffffff", 35 | "shade_color": "rgba(0, 0, 0, 0.19)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/kanagawa.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kanagawa", 3 | "variables": { 4 | "accent_color": "#7AA89F", 5 | "accent_bg_color": "#6A9589", 6 | "accent_fg_color": "#DCD7BA", 7 | "destructive_color": "#E82424", 8 | "destructive_bg_color": "#C34043", 9 | "destructive_fg_color": "#DCD7BA", 10 | "success_color": "#98BB6C", 11 | "success_bg_color": "#76946A", 12 | "success_fg_color": "#DCD7BA", 13 | "warning_color": "#E6C384", 14 | "warning_bg_color": "#C0A36E", 15 | "warning_fg_color": "#DCD7BA", 16 | "error_color": "#E82424", 17 | "error_bg_color": "#C34043", 18 | "error_fg_color": "#DCD7BA", 19 | "window_bg_color": "#1F1F28", 20 | "window_fg_color": "#DCD7BA", 21 | "view_bg_color": "#1F1F28", 22 | "view_fg_color": "#DCD7BA", 23 | "headerbar_bg_color": "#2A2A37", 24 | "headerbar_fg_color": "#DCD7BA", 25 | "headerbar_border_color": "rgba(0, 0, 0, 0.1)", 26 | "headerbar_backdrop_color": "#1F1F28", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#363646", 29 | "card_fg_color": "#DCD7BA", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#54546D", 32 | "dialog_fg_color": "#DCD7BA", 33 | "popover_bg_color": "#54546D", 34 | "popover_fg_color": "#DCD7BA", 35 | "shade_color": "#DCD7BA", 36 | "scrollbar_outline_color": "#DCD7BA" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#fff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /curated/layan-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Layan Dark", 3 | "variables": { 4 | "accent_color": "#868bf5", 5 | "accent_bg_color": "#5657f5", 6 | "accent_fg_color": "#eaeaea", 7 | "destructive_color": "#bf6567", 8 | "destructive_bg_color": "#bf0303", 9 | "destructive_fg_color": "#eaeaea", 10 | "success_color": "#71de8b", 11 | "success_bg_color": "#006e28", 12 | "success_fg_color": "#eaeaea", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#b08000", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#bf6567", 17 | "error_bg_color": "#bf0303", 18 | "error_fg_color": "#eaeaea", 19 | "window_bg_color": "#31313a", 20 | "window_fg_color": "#eaeaea", 21 | "view_bg_color": "#31313a", 22 | "view_fg_color": "#eaeaea", 23 | "headerbar_bg_color": "#44454b", 24 | "headerbar_fg_color": "#eaeaea", 25 | "headerbar_border_color": "#44454b", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#eaeaea", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#44454b", 32 | "dialog_fg_color": "#eaeaea", 33 | "popover_bg_color": "#44454b", 34 | "popover_fg_color": "#eaeaea", 35 | "shade_color": "rgb(56,56,56)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /curated/layan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Layan", 3 | "variables": { 4 | "accent_color": "#868bf5", 5 | "accent_bg_color": "#5657f5", 6 | "accent_fg_color": "#eaeaea", 7 | "destructive_color": "#bf6567", 8 | "destructive_bg_color": "#bf0303", 9 | "destructive_fg_color": "#eaeaea", 10 | "success_color": "#71de8b", 11 | "success_bg_color": "#006e28", 12 | "success_fg_color": "#eaeaea", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#b08000", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#bf6567", 17 | "error_bg_color": "#bf0303", 18 | "error_fg_color": "#eaeaea", 19 | "window_bg_color": "#ffffff", 20 | "window_fg_color": "#333333", 21 | "view_bg_color": "#f5f5f5", 22 | "view_fg_color": "#333333", 23 | "headerbar_bg_color": "#fcfcfc", 24 | "headerbar_fg_color": "#333333", 25 | "headerbar_border_color": "#ffffff", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#333333", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#ffffff", 32 | "dialog_fg_color": "#333333", 33 | "popover_bg_color": "#fcfcfc", 34 | "popover_fg_color": "#333333", 35 | "shade_color": "rgb(56,56,56)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } -------------------------------------------------------------------------------- /curated/nord-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nord Dark", 3 | "variables": { 4 | "accent_color": "rgb(136,192,208)", 5 | "accent_bg_color": "rgb(136,192,208)", 6 | "accent_fg_color": "rgb(46,52,64)", 7 | "destructive_color": "rgb(208,135,112)", 8 | "destructive_bg_color": "rgb(208,135,112)", 9 | "destructive_fg_color": "rgb(46,52,64)", 10 | "success_color": "rgb(163,190,140)", 11 | "success_bg_color": "rgb(163,190,140)", 12 | "success_fg_color": "rgb(46,52,64)", 13 | "warning_color": "rgb(235,203,139)", 14 | "warning_bg_color": "rgb(235,203,139)", 15 | "warning_fg_color": "rgb(46,52,64)", 16 | "error_color": "rgb(191,97,106)", 17 | "error_bg_color": "rgb(191,97,106)", 18 | "error_fg_color": "rgb(46,52,64)", 19 | "window_bg_color": "rgb(46,52,64)", 20 | "window_fg_color": "rgb(236,239,244)", 21 | "view_bg_color": "rgb(59,66,82)", 22 | "view_fg_color": "rgb(236,239,244)", 23 | "headerbar_bg_color": "rgb(59,66,82)", 24 | "headerbar_fg_color": "rgb(236,239,244)", 25 | "headerbar_border_color": "rgb(59,66,82)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgb(59,66,82)", 28 | "card_bg_color": "rgb(46,52,64)", 29 | "card_fg_color": "rgb(236,239,244)", 30 | "card_shade_color": "rgb(59,66,82)", 31 | "dialog_bg_color": "rgb(67,76,94)", 32 | "dialog_fg_color": "rgb(236,239,244)", 33 | "popover_bg_color": "rgb(67,76,94)", 34 | "popover_fg_color": "rgb(236,239,244)", 35 | "shade_color": "rgb(59,66,82)", 36 | "scrollbar_outline_color": "rgb(229,233,240)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /curated/nord-light.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nord Light", 3 | "variables": { 4 | "accent_color": "rgb(94,129,172)", 5 | "accent_bg_color": "rgb(136,192,208)", 6 | "accent_fg_color": "rgb(46,52,64)", 7 | "destructive_color": "rgb(208,135,112)", 8 | "destructive_bg_color": "rgb(208,135,112)", 9 | "destructive_fg_color": "rgb(46,52,64)", 10 | "success_color": "rgb(163,190,140)", 11 | "success_bg_color": "rgb(163,190,140)", 12 | "success_fg_color": "rgb(46,52,64)", 13 | "warning_color": "rgb(235,203,139)", 14 | "warning_bg_color": "rgb(235,203,139)", 15 | "warning_fg_color": "rgb(46,52,64)", 16 | "error_color": "rgb(191,97,106)", 17 | "error_bg_color": "rgb(191,97,106)", 18 | "error_fg_color": "rgb(46,52,64)", 19 | "window_bg_color": "rgb(236,239,244)", 20 | "window_fg_color": "rgb(46,52,64)", 21 | "view_bg_color": "rgb(216,222,233)", 22 | "view_fg_color": "#000000", 23 | "headerbar_bg_color": "rgb(229,233,240)", 24 | "headerbar_fg_color": "rgb(46,52,64)", 25 | "headerbar_border_color": "rgb(216,222,233)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgb(216,222,233)", 28 | "card_bg_color": "rgb(250,250,250)", 29 | "card_fg_color": "rgb(46,52,64)", 30 | "card_shade_color": "rgb(216,222,233)", 31 | "dialog_bg_color": "rgb(216,222,233)", 32 | "dialog_fg_color": "rgb(46,52,64)", 33 | "popover_bg_color": "rgb(216,222,233)", 34 | "popover_fg_color": "rgb(46,52,64)", 35 | "shade_color": "rgb(216,222,233)", 36 | "scrollbar_outline_color": "rgb(76,86,106)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /curated/nord.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nord", 3 | "variables": { 4 | "accent_color": "#8fbcbb", 5 | "accent_bg_color": "#8fbcbb", 6 | "accent_fg_color": "#d8dee9", 7 | "destructive_color": "#bf616a", 8 | "destructive_bg_color": "#bf616a", 9 | "destructive_fg_color": "#d8dee9", 10 | "success_color": "#a3be8c", 11 | "success_bg_color": "#434c5e", 12 | "success_fg_color": "#d8dee9", 13 | "warning_color": "#c3674a", 14 | "warning_bg_color": "#434c5e", 15 | "warning_fg_color": "#d8dee9", 16 | "error_color": "#b84f59", 17 | "error_bg_color": "#434c5e", 18 | "error_fg_color": "#d8dee9", 19 | "window_bg_color": "#3b4252", 20 | "window_fg_color": "#d8dee9", 21 | "view_bg_color": "#3b4252", 22 | "view_fg_color": "#d8dee9", 23 | "headerbar_bg_color": "#2e3440", 24 | "headerbar_fg_color": "#d8dee9", 25 | "headerbar_border_color": "#ffffff", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "#3b4252", 29 | "card_fg_color": "#d8dee9", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#3b4252", 32 | "dialog_fg_color": "#d8dee9", 33 | "popover_bg_color": "#3b4252", 34 | "popover_fg_color": "#d8dee9", 35 | "shade_color": "#4c566a", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /curated/one-dark-pro.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "One Dark Pro", 3 | "variables": { 4 | "accent_color": "@blue_3", 5 | "accent_bg_color": "@blue_4", 6 | "accent_fg_color": "@light_1", 7 | "destructive_color": "@orange_3", 8 | "destructive_bg_color": "@orange_3", 9 | "destructive_fg_color": "@dark_3", 10 | "success_color": "@green_3", 11 | "success_bg_color": "@green_3", 12 | "success_fg_color": "@dark_3", 13 | "warning_color": "@yellow_3", 14 | "warning_bg_color": "@yellow_3", 15 | "warning_fg_color": "@dark_3", 16 | "error_color": "@red_3", 17 | "error_bg_color": "@red_3", 18 | "error_fg_color": "@red_3", 19 | "window_bg_color": "@dark_3", 20 | "window_fg_color": "@light_3", 21 | "view_bg_color": "@dark_2", 22 | "view_fg_color": "@light_3", 23 | "headerbar_bg_color": "@dark_3", 24 | "headerbar_fg_color": "@light_3", 25 | "headerbar_border_color": "@light_2", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "@dark_4", 28 | "card_bg_color": "@view_bg_color", 29 | "card_fg_color": "@view_fg_color", 30 | "card_shade_color": "@window_bg_color", 31 | "dialog_bg_color": "@window_bg_color", 32 | "dialog_fg_color": "@window_fg_color", 33 | "popover_bg_color": "@window_bg_color", 34 | "popover_fg_color": "@window_fg_color", 35 | "shade_color": "@card_shade_color", 36 | "scrollbar_outline_color": "@view_bg_color" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#8fc2eb", 41 | "2": "#6fafe3", 42 | "3": "#61afef", 43 | "4": "#3477ad", 44 | "5": "#124c7a" 45 | }, 46 | "green_": { 47 | "1": "#d0edbb", 48 | "2": "#b4d99a", 49 | "3": "#98c379", 50 | "4": "#72a150", 51 | "5": "#518c26" 52 | }, 53 | "yellow_": { 54 | "1": "#fae6c0", 55 | "2": "#edd19d", 56 | "3": "#e5c07b", 57 | "4": "#c29644", 58 | "5": "#ba8014" 59 | }, 60 | "orange_": { 61 | "1": "#ebc9a9", 62 | "2": "#e6b78c", 63 | "3": "#d19a66", 64 | "4": "#cf833c", 65 | "5": "#c26915" 66 | }, 67 | "red_": { 68 | "1": "#eda8a1", 69 | "2": "#d1736b", 70 | "3": "#be5046", 71 | "4": "#b53428", 72 | "5": "#bf1a0b" 73 | }, 74 | "purple_": { 75 | "1": "#e6c7f0", 76 | "2": "#d39fe3", 77 | "3": "#c678dd", 78 | "4": "#9f47ba", 79 | "5": "#8c1dad" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#dce0e6", 91 | "3": "#abb2bf", 92 | "4": "#9ba1ab", 93 | "5": "#777f8c" 94 | }, 95 | "dark_": { 96 | "1": "#5c6370", 97 | "2": "#2D333B", 98 | "3": "#282c34", 99 | "4": "#1e2229", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } -------------------------------------------------------------------------------- /curated/otto.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "otto", 3 | "variables": { 4 | "accent_color": "#f67066", 5 | "accent_bg_color": "#f67066", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#da4453", 8 | "destructive_bg_color": "#da4453", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#27ae60", 11 | "success_bg_color": "#27ae60", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f67400", 14 | "warning_bg_color": "#f67400", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#da4453", 17 | "error_bg_color": "#da4453", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#2d3747", 20 | "window_fg_color": "#fcfcfc", 21 | "view_bg_color": "#2d3747", 22 | "view_fg_color": "#fcfcfc", 23 | "headerbar_bg_color": "#2d3747", 24 | "headerbar_fg_color": "#fcfcfc", 25 | "headerbar_border_color": "#fcfcfc", 26 | "headerbar_backdrop_color": "#2d3747", 27 | "headerbar_shade_color": "rgba(255, 255, 255, 0.09)", 28 | "card_bg_color": "#3b4655", 29 | "card_fg_color": "#fcfcfc", 30 | "card_shade_color": "rgba(255, 255, 255, 0.09)", 31 | "dialog_bg_color": "#2d3747", 32 | "dialog_fg_color": "#fcfcfc", 33 | "popover_bg_color": "#2d3747", 34 | "popover_fg_color": "#fcfcfc", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/partii.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Partii", 3 | "variables": { 4 | "accent_color": "#ffb876", 5 | "accent_bg_color": "#e49b55", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#EF9A9A", 8 | "destructive_bg_color": "#EF5350", 9 | "destructive_fg_color": "#FFFFFF", 10 | "success_color": "#A5D6A7", 11 | "success_bg_color": "#66BB6A", 12 | "success_fg_color": "rgba(0, 0, 0, 0.8)", 13 | "warning_color": "#FFF59D", 14 | "warning_bg_color": "#FFEE58", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#EF9A9A", 17 | "error_bg_color": "#EF5350", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#141d1d", 20 | "window_fg_color": "#d4e6e5", 21 | "view_bg_color": "#293232", 22 | "view_fg_color": "#c1e8fb", 23 | "headerbar_bg_color": "#293232", 24 | "headerbar_fg_color": "#c1e8fb", 25 | "headerbar_border_color": "@headerbar_fg_color", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "#293232", 29 | "card_fg_color": "#d4e6e5", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#384b4a", 32 | "dialog_fg_color": "#a5ccdf", 33 | "popover_bg_color": "#384b4a", 34 | "popover_fg_color": "#a5ccdf", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "rgb(255,255,255)", 90 | "2": "rgb(233,243,242)", 91 | "3": "rgb(190,201,200)", 92 | "4": "rgb(163,173,173)", 93 | "5": "rgb(136,147,146)" 94 | }, 95 | "dark_": { 96 | "1": "rgb(110,120,120)", 97 | "2": "rgb(63,73,72)", 98 | "3": "rgb(41,50,50)", 99 | "4": "rgb(20,29,29)", 100 | "5": "rgb(0,0,0)" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/solarized-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Solarized Dark", 3 | "variables": { 4 | "accent_color": "#268bd2", 5 | "accent_bg_color": "#268bd2", 6 | "accent_fg_color": "#002b36", 7 | "destructive_color": "#dc322f", 8 | "destructive_bg_color": "#dc322f", 9 | "destructive_fg_color": "#fdf6e3", 10 | "success_color": "#859900", 11 | "success_bg_color": "#859900", 12 | "success_fg_color": "#002b36", 13 | "warning_color": "#b58900", 14 | "warning_bg_color": "#b58900", 15 | "warning_fg_color": "#002b36", 16 | "error_color": "#dc322f", 17 | "error_bg_color": "#dc322f", 18 | "error_fg_color": "#fdf6e3", 19 | "window_bg_color": "#002b36", 20 | "window_fg_color": "#839496", 21 | "view_bg_color": "#073642", 22 | "view_fg_color": "#93a1a1", 23 | "headerbar_bg_color": "#073642", 24 | "headerbar_fg_color": "#93a1a1", 25 | "headerbar_border_color": "#073642", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "#073642", 28 | "card_bg_color": "#073642", 29 | "card_fg_color": "#93a1a1", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#073642", 32 | "dialog_fg_color": "#93a1a1", 33 | "popover_bg_color": "#073642", 34 | "popover_fg_color": "#93a1a1", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "#586e75" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } -------------------------------------------------------------------------------- /curated/solarized.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Solarized", 3 | "variables": { 4 | "accent_color": "#268bd2", 5 | "accent_bg_color": "#268bd2", 6 | "accent_fg_color": "#002b36", 7 | "destructive_color": "#dc322f", 8 | "destructive_bg_color": "#dc322f", 9 | "destructive_fg_color": "#fdf6e3", 10 | "success_color": "#859900", 11 | "success_bg_color": "#859900", 12 | "success_fg_color": "#002b36", 13 | "warning_color": "#b58900", 14 | "warning_bg_color": "#b58900", 15 | "warning_fg_color": "#002b36", 16 | "error_color": "#dc322f", 17 | "error_bg_color": "#dc322f", 18 | "error_fg_color": "#fdf6e3", 19 | "window_bg_color": "#fdf6e3", 20 | "window_fg_color": "#657b83", 21 | "view_bg_color": "#eee8d5", 22 | "view_fg_color": "#586e75", 23 | "headerbar_bg_color": "#eee8d5", 24 | "headerbar_fg_color": "#586e75", 25 | "headerbar_border_color": "#eee8d5", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "#eee8d5", 28 | "card_bg_color": "#eee8d5", 29 | "card_fg_color": "#586e75", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#eee8d5", 32 | "dialog_fg_color": "#586e75", 33 | "popover_bg_color": "#eee8d5", 34 | "popover_fg_color": "#586e75", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "#93a1a1" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } -------------------------------------------------------------------------------- /curated/synthwave.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Synthwave", 3 | "variables": { 4 | "accent_color": "#e30b9b", 5 | "accent_bg_color": "#e30b9b", 6 | "accent_fg_color": "#08bfd4", 7 | "destructive_color": "rgb(189,64,191)", 8 | "destructive_bg_color": "rgb(191,64,117)", 9 | "destructive_fg_color": "#08bfd4", 10 | "success_color": "rgb(64,191,163)", 11 | "success_bg_color": "rgb(64,143,191)", 12 | "success_fg_color": "#e30b9b", 13 | "warning_color": "rgb(43,229,173)", 14 | "warning_bg_color": "rgb(60,201,232)", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "rgb(189,64,191)", 17 | "error_bg_color": "rgb(191,64,117)", 18 | "error_fg_color": "#08bfd4", 19 | "window_bg_color": "rgba(36,36,36,0.88)", 20 | "window_fg_color": "#e30b9b", 21 | "view_bg_color": "rgba(36,36,36,0.88)", 22 | "view_fg_color": "#e30b9b", 23 | "headerbar_bg_color": "rgba(30,30,30,0.5)", 24 | "headerbar_fg_color": "#e30b9b", 25 | "headerbar_border_color": "#ffffff", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255,5,180,0.12)", 29 | "card_fg_color": "#08bfd4", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "rgba(36,36,36,0.88)", 32 | "dialog_fg_color": "#e30b9b", 33 | "popover_bg_color": "rgba(36,36,36,0.88)", 34 | "popover_fg_color": "#e30b9b", 35 | "shade_color": "rgba(36,36,36,0.88)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /curated/tango.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tango", 3 | "variables": { 4 | "accent_color": "#8db1dc", 5 | "accent_bg_color": "#3584e4", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#c01c28", 8 | "destructive_bg_color": "#e01b24", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#26a269", 11 | "success_bg_color": "#2ec27e", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#ae7b03", 14 | "warning_bg_color": "#e5a50a", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#c01c28", 17 | "error_bg_color": "#e01b24", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#ffffff", 20 | "window_fg_color": "#2e3436", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#2e3436", 23 | "headerbar_bg_color": "#edeeee", 24 | "headerbar_fg_color": "#2e3436", 25 | "headerbar_border_color": "#2e3436", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#2e3436", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#ffffff", 32 | "dialog_fg_color": "#2e3436", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#2e3436", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "rgb(255,255,255)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /curated/yaru-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Yaru Dark", 3 | "variables": { 4 | "accent_color": "@orange_5", 5 | "accent_bg_color": "@orange_5", 6 | "accent_fg_color": "@light_1", 7 | "destructive_color": "@red_4", 8 | "destructive_bg_color": "@red_4", 9 | "destructive_fg_color": "@light_1", 10 | "success_color": "@green_4", 11 | "success_bg_color": "@green_4", 12 | "success_fg_color": "@light_1", 13 | "warning_color": "@yellow_5", 14 | "warning_bg_color": "@yellow_5", 15 | "warning_fg_color": "@light_1", 16 | "error_color": "@red_4", 17 | "error_bg_color": "@red_4", 18 | "error_fg_color": "@light_1", 19 | "window_bg_color": "#2c2c2c", 20 | "window_fg_color": "@light_2", 21 | "view_bg_color": "#1e1e1e", 22 | "view_fg_color": "#ffffff", 23 | "headerbar_bg_color": "#303030", 24 | "headerbar_fg_color": "#ffffff", 25 | "headerbar_border_color": "#ffffff", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#ffffff", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#383838", 32 | "dialog_fg_color": "#ffffff", 33 | "popover_bg_color": "#1d1d1d", 34 | "popover_fg_color": "#ffffff", 35 | "shade_color": "rgba(0,0,0,0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#75d3f4", 41 | "2": "#47c4f1", 42 | "3": "#19B6EE", 43 | "4": "#007aa6", 44 | "5": "#335280" 45 | }, 46 | "green_": { 47 | "1": "#5AED70", 48 | "2": "#47D35C", 49 | "3": "#34B948", 50 | "4": "#219E34", 51 | "5": "#0e8420" 52 | }, 53 | "yellow_": { 54 | "1": "#FCCD87", 55 | "2": "#FBC16A", 56 | "3": "#FBB44C", 57 | "4": "#FAA82F", 58 | "5": "#F99B11" 59 | }, 60 | "orange_": { 61 | "1": "#F29879", 62 | "2": "#F08763", 63 | "3": "#ED764D", 64 | "4": "#EB6536", 65 | "5": "#E95420" 66 | }, 67 | "red_": { 68 | "1": "#EA485C", 69 | "2": "#DE374C", 70 | "3": "#D3273B", 71 | "4": "#c7162b", 72 | "5": "#a91224" 73 | }, 74 | "purple_": { 75 | "1": "#924D8B", 76 | "2": "#762572", 77 | "3": "#77216F", 78 | "4": "#5E2750", 79 | "5": "#2C001E" 80 | }, 81 | "brown_": { 82 | "1": "#E1B289", 83 | "2": "#C5976E", 84 | "3": "#AA7B53", 85 | "4": "#8E6038", 86 | "5": "#72441D" 87 | }, 88 | "light_": { 89 | "1": "#FFFFFF", 90 | "2": "#F7F7F7", 91 | "3": "#CCC", 92 | "4": "#AEA79F", 93 | "5": "#878787" 94 | }, 95 | "dark_": { 96 | "1": "#666666", 97 | "2": "#5D5D5D", 98 | "3": "#3D3D3D", 99 | "4": "#181818", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } -------------------------------------------------------------------------------- /curated/yaru.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Yaru", 3 | "variables": { 4 | "accent_color": "@orange_5", 5 | "accent_bg_color": "@orange_5", 6 | "accent_fg_color": "@light_1", 7 | "destructive_color": "@red_4", 8 | "destructive_bg_color": "@red_4", 9 | "destructive_fg_color": "@light_1", 10 | "success_color": "@green_4", 11 | "success_bg_color": "@green_4", 12 | "success_fg_color": "@light_1", 13 | "warning_color": "@yellow_5", 14 | "warning_bg_color": "@yellow_5", 15 | "warning_fg_color": "@light_1", 16 | "error_color": "@red_4", 17 | "error_bg_color": "@red_4", 18 | "error_fg_color": "@light_1", 19 | "window_bg_color": "#fafafa", 20 | "window_fg_color": "@dark_3", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#000000", 23 | "headerbar_bg_color": "#ebebeb", 24 | "headerbar_fg_color": "rgba(0, 0, 0, 0.8)", 25 | "headerbar_border_color": "rgba(0, 0, 0, 0.8)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "rgba(0, 0, 0, 0.8)", 30 | "card_shade_color": "rgba(0, 0, 0, 0.7)", 31 | "dialog_bg_color": "#383838", 32 | "dialog_fg_color": "#ffffff", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "rgba(0, 0, 0, 0.8)", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#75d3f4", 41 | "2": "#47c4f1", 42 | "3": "#19B6EE", 43 | "4": "#007aa6", 44 | "5": "#335280" 45 | }, 46 | "green_": { 47 | "1": "#5AED70", 48 | "2": "#47D35C", 49 | "3": "#34B948", 50 | "4": "#219E34", 51 | "5": "#0e8420" 52 | }, 53 | "yellow_": { 54 | "1": "#FCCD87", 55 | "2": "#FBC16A", 56 | "3": "#FBB44C", 57 | "4": "#FAA82F", 58 | "5": "#F99B11" 59 | }, 60 | "orange_": { 61 | "1": "#F29879", 62 | "2": "#F08763", 63 | "3": "#ED764D", 64 | "4": "#EB6536", 65 | "5": "#E95420" 66 | }, 67 | "red_": { 68 | "1": "#EA485C", 69 | "2": "#DE374C", 70 | "3": "#D3273B", 71 | "4": "#c7162b", 72 | "5": "#a91224" 73 | }, 74 | "purple_": { 75 | "1": "#924D8B", 76 | "2": "#762572", 77 | "3": "#77216F", 78 | "4": "#5E2750", 79 | "5": "#2C001E" 80 | }, 81 | "brown_": { 82 | "1": "#E1B289", 83 | "2": "#C5976E", 84 | "3": "#AA7B53", 85 | "4": "#8E6038", 86 | "5": "#72441D" 87 | }, 88 | "light_": { 89 | "1": "#FFFFFF", 90 | "2": "#F7F7F7", 91 | "3": "#CCC", 92 | "4": "#AEA79F", 93 | "5": "#878787" 94 | }, 95 | "dark_": { 96 | "1": "#666666", 97 | "2": "#5D5D5D", 98 | "3": "#3D3D3D", 99 | "4": "#181818", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /curated/zenburn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zenburn", 3 | "variables": { 4 | "accent_color": "#7cb8bb", 5 | "accent_bg_color": "#4c7073", 6 | "accent_fg_color": "#ffffef", 7 | "destructive_color": "#dfaf8f", 8 | "destructive_bg_color": "#8c5353", 9 | "destructive_fg_color": "#dcdccc", 10 | "success_color": "#9fc59f", 11 | "success_bg_color": "#5f7f5f", 12 | "success_fg_color": "#dcdccc", 13 | "warning_color": "#f0dfaf", 14 | "warning_bg_color": "#b69e5a", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#cc9393", 17 | "error_bg_color": "#8c5353", 18 | "error_fg_color": "#dcdccc", 19 | "window_bg_color": "#3f3f3f", 20 | "window_fg_color": "#dcdccc", 21 | "view_bg_color": "#383838", 22 | "view_fg_color": "#dcdccc", 23 | "headerbar_bg_color": "#2b2b2b", 24 | "headerbar_fg_color": "#dcdccc", 25 | "headerbar_border_color": "#dcdccc", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(0, 0, 0, 0.15)", 29 | "card_fg_color": "#dcdccc", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#3f3f3f", 32 | "dialog_fg_color": "#dcdccc", 33 | "popover_bg_color": "#383838", 34 | "popover_fg_color": "#dcdccc", 35 | "shade_color": "rgba(0,0,0,0.15)", 36 | "scrollbar_outline_color": "rgba(0,0,0,0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#cde9eb", 41 | "2": "#a5d4d6", 42 | "3": "#7cb8bb", 43 | "4": "#55989b", 44 | "5": "#3b8488" 45 | }, 46 | "green_": { 47 | "1": "#c2d1c2", 48 | "2": "#9fb79f", 49 | "3": "#7f9f7f", 50 | "4": "#648a64", 51 | "5": "#4c764c" 52 | }, 53 | "yellow_": { 54 | "1": "#fff9e8", 55 | "2": "#fff3d3", 56 | "3": "#f0dfaf", 57 | "4": "#d2bd82", 58 | "5": "#b69e5a" 59 | }, 60 | "orange_": { 61 | "1": "#ffe8d9", 62 | "2": "#fdd8be", 63 | "3": "#dfaf8f", 64 | "4": "#c18a65", 65 | "5": "#a66b43" 66 | }, 67 | "red_": { 68 | "1": "#ffe3e3", 69 | "2": "#b26f6f", 70 | "3": "#cc9393", 71 | "4": "#c01c28", 72 | "5": "#995252" 73 | }, 74 | "purple_": { 75 | "1": "#f6d4ec", 76 | "2": "#ebb0d9", 77 | "3": "#dc8cc4", 78 | "4": "#ca6aad", 79 | "5": "#b54b95" 80 | }, 81 | "brown_": { 82 | "1": "#e8d3c1", 83 | "2": "#c7ac95", 84 | "3": "#ac8d73", 85 | "4": "#927257", 86 | "5": "#6f5239" 87 | }, 88 | "light_": { 89 | "1": "#fffffd", 90 | "2": "#ffffef", 91 | "3": "#dcdccc", 92 | "4": "#989890", 93 | "5": "#656555" 94 | }, 95 | "dark_": { 96 | "1": "#4f4f4f", 97 | "2": "#494949", 98 | "3": "#3f3f3f", 99 | "4": "#383838", 100 | "5": "#303030" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /curated/zorin-os-16-blue-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Blue Dark", 3 | "variables": { 4 | "accent_color": "#BDE6FB", 5 | "accent_bg_color": "#BDE6FB", 6 | "accent_fg_color": "#1E2529", 7 | "destructive_color": "#fb7c7c", 8 | "destructive_bg_color": "#fb7c7c", 9 | "destructive_fg_color": "#1E2529", 10 | "success_color": "#bbf1dd", 11 | "success_bg_color": "#bbf1dd", 12 | "success_fg_color": "#1E2529", 13 | "warning_color": "#fcc8b4", 14 | "warning_bg_color": "#fcc8b4", 15 | "warning_fg_color": "#1E2529", 16 | "error_color": "#fb7c7c", 17 | "error_bg_color": "#fb7c7c", 18 | "error_fg_color": "#1E2529", 19 | "window_bg_color": "#1e2529", 20 | "window_fg_color": "#bde6fb", 21 | "view_bg_color": "#171d20", 22 | "view_fg_color": "#bde6fb", 23 | "headerbar_bg_color": "#1e2529", 24 | "headerbar_fg_color": "#bde6fb", 25 | "headerbar_border_color": "#bde6fb", 26 | "headerbar_backdrop_color": "#1a2022", 27 | "headerbar_shade_color": "rgba(189, 230, 251, 0.09)", 28 | "card_bg_color": "#171d20", 29 | "card_fg_color": "#bde6fb", 30 | "card_shade_color": "rgba(189, 230, 251, 0.09)", 31 | "dialog_bg_color": "#1e2529", 32 | "dialog_fg_color": "#bde6fb", 33 | "popover_bg_color": "#171d20", 34 | "popover_fg_color": "#bde6fb", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(23, 29, 32, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Blue", 3 | "variables": { 4 | "accent_color": "#15A6F0", 5 | "accent_bg_color": "#15A6F0", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff2626", 8 | "destructive_bg_color": "#ff2626", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#2AC88D", 11 | "success_bg_color": "#2AC88D", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#F88052", 14 | "warning_bg_color": "#F88052", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#ff2626", 17 | "error_bg_color": "#ff2626", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#f5f7fa", 20 | "window_fg_color": "#123354", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#123354", 23 | "headerbar_bg_color": "#f5f7fa", 24 | "headerbar_fg_color": "#123354", 25 | "headerbar_border_color": "#123354", 26 | "headerbar_backdrop_color": "#f8f8f8", 27 | "headerbar_shade_color": "rgba(18, 51, 84, 0.09)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#123354", 30 | "card_shade_color": "rgba(18, 51, 84, 0.09)", 31 | "dialog_bg_color": "#f5f7fa", 32 | "dialog_fg_color": "#123354", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#123354", 35 | "shade_color": "rgba(0, 0, 0, 0.07)", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-green-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Green Dark", 3 | "variables": { 4 | "accent_color": "#bbf1dd", 5 | "accent_bg_color": "#bbf1dd", 6 | "accent_fg_color": "#1b2421", 7 | "destructive_color": "#fb7c7c", 8 | "destructive_bg_color": "#fb7c7c", 9 | "destructive_fg_color": "#1b2421", 10 | "success_color": "#bbf1dd", 11 | "success_bg_color": "#bbf1dd", 12 | "success_fg_color": "#1E2529", 13 | "warning_color": "#fcc8b4", 14 | "warning_bg_color": "#fcc8b4", 15 | "warning_fg_color": "#1E2529", 16 | "error_color": "#fb7c7c", 17 | "error_bg_color": "#fb7c7c", 18 | "error_fg_color": "#1b2421", 19 | "window_bg_color": "#1b2421", 20 | "window_fg_color": "#bbf1dd", 21 | "view_bg_color": "#151c19", 22 | "view_fg_color": "#bbf1dd", 23 | "headerbar_bg_color": "#1b2421", 24 | "headerbar_fg_color": "#bbf1dd", 25 | "headerbar_border_color": "#bbf1dd", 26 | "headerbar_backdrop_color": "#181e1c", 27 | "headerbar_shade_color": "rgba(187, 241, 221, 0.09)", 28 | "card_bg_color": "#151c19", 29 | "card_fg_color": "#bbf1dd", 30 | "card_shade_color": "rgba(187, 241, 221, 0.09)", 31 | "dialog_bg_color": "#1b2421", 32 | "dialog_fg_color": "#bbf1dd", 33 | "popover_bg_color": "#151c19", 34 | "popover_fg_color": "#bbf1dd", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(21, 28, 25, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-green.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Green", 3 | "variables": { 4 | "accent_color": "#2AC88D", 5 | "accent_bg_color": "#2AC88D", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff2626", 8 | "destructive_bg_color": "#ff2626", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#2AC88D", 11 | "success_bg_color": "#2AC88D", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#F88052", 14 | "warning_bg_color": "#F88052", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#ff2626", 17 | "error_bg_color": "#ff2626", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#f6f9f9", 20 | "window_fg_color": "#19483e", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#19483e", 23 | "headerbar_bg_color": "#f6f9f9", 24 | "headerbar_fg_color": "#19483e", 25 | "headerbar_border_color": "#19483e", 26 | "headerbar_backdrop_color": "#f8f8f8", 27 | "headerbar_shade_color": "rgba(25, 72, 62, 0.09)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#19483e", 30 | "card_shade_color": "rgba(25, 72, 62, 0.09)", 31 | "dialog_bg_color": "#f6f9f9", 32 | "dialog_fg_color": "#19483e", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#19483e", 35 | "shade_color": "rgba(0, 0, 0, 0.07)", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-grey-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Grey Dark", 3 | "variables": { 4 | "accent_color": "#ffffff", 5 | "accent_bg_color": "#ffffff", 6 | "accent_fg_color": "#202020", 7 | "destructive_color": "#fb7c7c", 8 | "destructive_bg_color": "#fb7c7c", 9 | "destructive_fg_color": "#202020", 10 | "success_color": "#bbf1dd", 11 | "success_bg_color": "#bbf1dd", 12 | "success_fg_color": "#202020", 13 | "warning_color": "#fcc8b4", 14 | "warning_bg_color": "#fcc8b4", 15 | "warning_fg_color": "#202020", 16 | "error_color": "#fb7c7c", 17 | "error_bg_color": "#fb7c7c", 18 | "error_fg_color": "#1b2421", 19 | "window_bg_color": "#202020", 20 | "window_fg_color": "#ffffff", 21 | "view_bg_color": "#191919", 22 | "view_fg_color": "#ffffff", 23 | "headerbar_bg_color": "#202020", 24 | "headerbar_fg_color": "#ffffff", 25 | "headerbar_border_color": "#ffffff", 26 | "headerbar_backdrop_color": "#1b1b1b", 27 | "headerbar_shade_color": "rgba(255, 255, 255, 0.09)", 28 | "card_bg_color": "#191919", 29 | "card_fg_color": "#ffffff", 30 | "card_shade_color": "rgba(255, 255, 255, 0.09)", 31 | "dialog_bg_color": "#202020", 32 | "dialog_fg_color": "#ffffff", 33 | "popover_bg_color": "#191919", 34 | "popover_fg_color": "#ffffff", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(25, 25, 25, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-grey.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Grey", 3 | "variables": { 4 | "accent_color": "#606264", 5 | "accent_bg_color": "#606264", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff2626", 8 | "destructive_bg_color": "#ff2626", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#2AC88D", 11 | "success_bg_color": "#2AC88D", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#F88052", 14 | "warning_bg_color": "#F88052", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#ff2626", 17 | "error_bg_color": "#ff2626", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#f7f7f7", 20 | "window_fg_color": "#292929", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#292929", 23 | "headerbar_bg_color": "#f7f7f7", 24 | "headerbar_fg_color": "#292929", 25 | "headerbar_border_color": "#292929", 26 | "headerbar_backdrop_color": "#f8f8f8", 27 | "headerbar_shade_color": "rgba(41, 41, 41, 0.09)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#292929", 30 | "card_shade_color": "rgba(41, 41, 41, 0.09)", 31 | "dialog_bg_color": "#f7f7f7", 32 | "dialog_fg_color": "#292929", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#292929", 35 | "shade_color": "rgba(0, 0, 0, 0.07)", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-orange-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Orange Dark", 3 | "variables": { 4 | "accent_color": "#fcc8b4", 5 | "accent_bg_color": "#fcc8b4", 6 | "accent_fg_color": "#271e1b", 7 | "destructive_color": "#fb7c7c", 8 | "destructive_bg_color": "#fb7c7c", 9 | "destructive_fg_color": "#271e1b", 10 | "success_color": "#bbf1dd", 11 | "success_bg_color": "#bbf1dd", 12 | "success_fg_color": "#271e1b", 13 | "warning_color": "#fcc8b4", 14 | "warning_bg_color": "#fcc8b4", 15 | "warning_fg_color": "#271e1b", 16 | "error_color": "#fb7c7c", 17 | "error_bg_color": "#fb7c7c", 18 | "error_fg_color": "#271e1b", 19 | "window_bg_color": "#271e1b", 20 | "window_fg_color": "#fcc8b4", 21 | "view_bg_color": "#1e1715", 22 | "view_fg_color": "#fcc8b4", 23 | "headerbar_bg_color": "#271e1b", 24 | "headerbar_fg_color": "#fcc8b4", 25 | "headerbar_border_color": "#fcc8b4", 26 | "headerbar_backdrop_color": "#201a18", 27 | "headerbar_shade_color": "rgba(252, 200, 180, 0.09)", 28 | "card_bg_color": "#1e1715", 29 | "card_fg_color": "#fcc8b4", 30 | "card_shade_color": "rgba(252, 200, 180, 0.09)", 31 | "dialog_bg_color": "#271e1b", 32 | "dialog_fg_color": "#fcc8b4", 33 | "popover_bg_color": "#1e1715", 34 | "popover_fg_color": "#fcc8b4", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(30, 23, 21, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Orange", 3 | "variables": { 4 | "accent_color": "#F88052", 5 | "accent_bg_color": "#F88052", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff2626", 8 | "destructive_bg_color": "#ff2626", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#2AC88D", 11 | "success_bg_color": "#2AC88D", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#F88052", 14 | "warning_bg_color": "#F88052", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#ff2626", 17 | "error_bg_color": "#ff2626", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#faf8f7", 20 | "window_fg_color": "#563b25", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#563b25", 23 | "headerbar_bg_color": "#faf8f7", 24 | "headerbar_fg_color": "#563b25", 25 | "headerbar_border_color": "#563b25", 26 | "headerbar_backdrop_color": "#f8f8f8", 27 | "headerbar_shade_color": "rgba(86, 59, 37, 0.09)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#563b25", 30 | "card_shade_color": "rgba(86, 59, 37, 0.09)", 31 | "dialog_bg_color": "#faf8f7", 32 | "dialog_fg_color": "#563b25", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#563b25", 35 | "shade_color": "rgba(0, 0, 0, 0.07)", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-purple-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Purple Dark", 3 | "variables": { 4 | "accent_color": "#d8c4f1", 5 | "accent_bg_color": "#d8c4f1", 6 | "accent_fg_color": "#221f26", 7 | "destructive_color": "#fb7c7c", 8 | "destructive_bg_color": "#fb7c7c", 9 | "destructive_fg_color": "#221f26", 10 | "success_color": "#bbf1dd", 11 | "success_bg_color": "#bbf1dd", 12 | "success_fg_color": "#221f26", 13 | "warning_color": "#fcc8b4", 14 | "warning_bg_color": "#fcc8b4", 15 | "warning_fg_color": "#221f26", 16 | "error_color": "#fb7c7c", 17 | "error_bg_color": "#fb7c7c", 18 | "error_fg_color": "#221f26", 19 | "window_bg_color": "#221f26", 20 | "window_fg_color": "#d8c4f1", 21 | "view_bg_color": "#1a181e", 22 | "view_fg_color": "#d8c4f1", 23 | "headerbar_bg_color": "#221f26", 24 | "headerbar_fg_color": "#d8c4f1", 25 | "headerbar_border_color": "#d8c4f1", 26 | "headerbar_backdrop_color": "#1d1b20", 27 | "headerbar_shade_color": "rgba(216, 196, 241, 0.09)", 28 | "card_bg_color": "#1a181e", 29 | "card_fg_color": "#d8c4f1", 30 | "card_shade_color": "rgba(216, 196, 241, 0.09)", 31 | "dialog_bg_color": "#221f26", 32 | "dialog_fg_color": "#d8c4f1", 33 | "popover_bg_color": "#1a181e", 34 | "popover_fg_color": "#d8c4f1", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(26, 24, 30, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Purple", 3 | "variables": { 4 | "accent_color": "#9C68DA", 5 | "accent_bg_color": "#9C68DA", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff2626", 8 | "destructive_bg_color": "#ff2626", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#2AC88D", 11 | "success_bg_color": "#2AC88D", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#F88052", 14 | "warning_bg_color": "#F88052", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#ff2626", 17 | "error_bg_color": "#ff2626", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#f9f7f9", 20 | "window_fg_color": "#402b4d", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#402b4d", 23 | "headerbar_bg_color": "#f9f7f9", 24 | "headerbar_fg_color": "#402b4d", 25 | "headerbar_border_color": "#402b4d", 26 | "headerbar_backdrop_color": "#f8f8f8", 27 | "headerbar_shade_color": "rgba(64, 43, 77, 0.09)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#402b4d", 30 | "card_shade_color": "rgba(64, 43, 77, 0.09)", 31 | "dialog_bg_color": "#f9f7f9", 32 | "dialog_fg_color": "#402b4d", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#402b4d", 35 | "shade_color": "rgba(0, 0, 0, 0.07)", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-red-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Red Dark", 3 | "variables": { 4 | "accent_color": "#fdb4b4", 5 | "accent_bg_color": "#fdb4b4", 6 | "accent_fg_color": "#271b1b", 7 | "destructive_color": "#fb7c7c", 8 | "destructive_bg_color": "#fb7c7c", 9 | "destructive_fg_color": "#271b1b", 10 | "success_color": "#bbf1dd", 11 | "success_bg_color": "#bbf1dd", 12 | "success_fg_color": "#271b1b", 13 | "warning_color": "#fcc8b4", 14 | "warning_bg_color": "#fcc8b4", 15 | "warning_fg_color": "#271b1b", 16 | "error_color": "#fb7c7c", 17 | "error_bg_color": "#fb7c7c", 18 | "error_fg_color": "#271b1b", 19 | "window_bg_color": "#271b1b", 20 | "window_fg_color": "#fdb4b4", 21 | "view_bg_color": "#1e1515", 22 | "view_fg_color": "#fdb4b4", 23 | "headerbar_bg_color": "#271b1b", 24 | "headerbar_fg_color": "#fdb4b4", 25 | "headerbar_border_color": "#fdb4b4", 26 | "headerbar_backdrop_color": "#211818", 27 | "headerbar_shade_color": "rgba(253, 180, 180, 0.09)", 28 | "card_bg_color": "#1e1515", 29 | "card_fg_color": "#fdb4b4", 30 | "card_shade_color": "rgba(253, 180, 180, 0.09)", 31 | "dialog_bg_color": "#271b1b", 32 | "dialog_fg_color": "#fdb4b4", 33 | "popover_bg_color": "#1e1515", 34 | "popover_fg_color": "#fdb4b4", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(30, 21, 21, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /curated/zorin-os-16-red.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zorin OS 16 Red", 3 | "variables": { 4 | "accent_color": "#FA4444", 5 | "accent_bg_color": "#FA4444", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff2626", 8 | "destructive_bg_color": "#ff2626", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#2AC88D", 11 | "success_bg_color": "#2AC88D", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#F88052", 14 | "warning_bg_color": "#F88052", 15 | "warning_fg_color": "#ffffff", 16 | "error_color": "#ff2626", 17 | "error_bg_color": "#ff2626", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#faf7f6", 20 | "window_fg_color": "#572920", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#572920", 23 | "headerbar_bg_color": "#faf7f6", 24 | "headerbar_fg_color": "#572920", 25 | "headerbar_border_color": "#572920", 26 | "headerbar_backdrop_color": "#f8f8f8", 27 | "headerbar_shade_color": "rgba(87, 41, 32, 0.09)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#572920", 30 | "card_shade_color": "rgba(87, 41, 32, 0.09)", 31 | "dialog_bg_color": "#faf7f6", 32 | "dialog_fg_color": "#572920", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#572920", 35 | "shade_color": "rgba(0, 0, 0, 0.07)", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official.json: -------------------------------------------------------------------------------- 1 | { 2 | "Builder": "https://github.com/GradienceTeam/Community/raw/next/official/builder.json", 3 | "Builder Dark": "https://github.com/GradienceTeam/Community/raw/next/official/builder-dark.json", 4 | "Catppuccin Frapp\u00e9": "https://github.com/GradienceTeam/Community/raw/next/official/catppuccin-frappe.json", 5 | "Catppuccin Latte": "https://github.com/GradienceTeam/Community/raw/next/official/catppuccin-latte.json", 6 | "Catppuccin Macchiato": "https://github.com/GradienceTeam/Community/raw/next/official/catppuccin-macchiato.json", 7 | "Catppuccin Mocha": "https://github.com/GradienceTeam/Community/raw/next/official/catppuccin-mocha.json", 8 | "Classic": "https://github.com/GradienceTeam/Community/raw/next/official/classic.json", 9 | "Classic Dark": "https://github.com/GradienceTeam/Community/raw/next/official/classic-dark.json", 10 | "Cobalt": "https://github.com/GradienceTeam/Community/raw/next/official/cobalt.json", 11 | "Cobalt Dark": "https://github.com/GradienceTeam/Community/raw/next/official/cobalt-dark.json", 12 | "Everforest": "https://github.com/GradienceTeam/Community/raw/next/official/everforest.json", 13 | "Everforest Dark": "https://github.com/GradienceTeam/Community/raw/next/official/everforest-dark.json", 14 | "Gruvbox": "https://github.com/GradienceTeam/Community/raw/next/official/gruvbox.json", 15 | "Gruvbox Dark": "https://github.com/GradienceTeam/Community/raw/next/official/gruvbox-dark.json", 16 | "Kate": "https://github.com/GradienceTeam/Community/raw/next/official/kate.json", 17 | "Kate Dark": "https://github.com/GradienceTeam/Community/raw/next/official/kate-dark.json", 18 | "Night Owl": "https://github.com/GradienceTeam/Community/raw/next/official/night-owl.json", 19 | "Oblivion": "https://github.com/GradienceTeam/Community/raw/next/official/oblivion.json", 20 | "Peninsula": "https://github.com/GradienceTeam/Community/raw/next/official/peninsula.json", 21 | "Peninsula Dark": "https://github.com/GradienceTeam/Community/raw/next/official/peninsula-dark.json", 22 | "Pretty Purple": "https://github.com/GradienceTeam/Community/raw/next/official/pretty-purple.json", 23 | "Solarized": "https://github.com/GradienceTeam/Community/raw/next/official/solarized.json", 24 | "Solarized Dark": "https://github.com/GradienceTeam/Community/raw/next/official/solarized-dark.json", 25 | "Tango": "https://github.com/GradienceTeam/Community/raw/next/official/tango.json", 26 | "Tokyo Night": "https://github.com/GradienceTeam/Community/raw/next/official/tokyonight.json", 27 | "Tokyo Night Dark": "https://github.com/GradienceTeam/Community/raw/next/official/tokyonight-dark.json", 28 | "Tokyo Night Moon": "https://github.com/GradienceTeam/Community/raw/next/official/tokyonight-moon.json", 29 | "Tokyo Night Storm": "https://github.com/GradienceTeam/Community/raw/next/official/tokyonight-storm.json" 30 | } -------------------------------------------------------------------------------- /official/builder-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Builder Dark", 3 | "variables": { 4 | "accent_color": "#41606f", 5 | "accent_bg_color": "#4186a8", 6 | "accent_fg_color": "#eeeeec", 7 | "destructive_color": "#ff7b63", 8 | "destructive_bg_color": "#c01c28", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#8ff0a4", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#cd9309", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#ff7b63", 17 | "error_bg_color": "#c01c28", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#1e1e1e", 20 | "window_fg_color": "#babdb6", 21 | "view_bg_color": "#3e3e3d", 22 | "view_fg_color": "#babdb6", 23 | "headerbar_bg_color": "#2b2c2b", 24 | "headerbar_fg_color": "#babdb6", 25 | "headerbar_border_color": "rgb(255,255,255)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "#303030", 29 | "card_fg_color": "#babdb6", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#1e1e1e", 32 | "dialog_fg_color": "rgb(186,189,182)", 33 | "popover_bg_color": "#2e2e2e", 34 | "popover_fg_color": "rgb(186,189,182)", 35 | "shade_color": "rgb(56,56,56)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Builder", 3 | "variables": { 4 | "accent_color": "#75aac1", 5 | "accent_bg_color": "#0077aa", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#c01c28", 8 | "destructive_bg_color": "#e01b24", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#26a269", 11 | "success_bg_color": "#2ec27e", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#ae7b03", 14 | "warning_bg_color": "#e5a50a", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#c01c28", 17 | "error_bg_color": "#e01b24", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#fafafa", 20 | "window_fg_color": "#4d4e53", 21 | "view_bg_color": "#ebecec", 22 | "view_fg_color": "#4d4e53", 23 | "headerbar_bg_color": "#ebebec", 24 | "headerbar_fg_color": "#4d4e53", 25 | "headerbar_border_color": "rgba(0, 0, 0, 0.8)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#4d4e53", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#fafafa", 32 | "dialog_fg_color": "#4d4e53", 33 | "popover_bg_color": "#fbfbfb", 34 | "popover_fg_color": "#4d4e53", 35 | "shade_color": "#ffffff", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "rgb(153,193,241)", 41 | "2": "rgb(98,160,234)", 42 | "3": "rgb(53,132,228)", 43 | "4": "rgb(28,113,216)", 44 | "5": "rgb(26,95,180)" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "rgb(255,255,255)", 90 | "2": "rgb(246,245,244)", 91 | "3": "rgb(222,221,218)", 92 | "4": "rgb(192,191,188)", 93 | "5": "rgb(154,153,150)" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/classic-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Classic Dark", 3 | "variables": { 4 | "accent_color": "#436372", 5 | "accent_bg_color": "#4186a8", 6 | "accent_fg_color": "#eeeeec", 7 | "destructive_color": "#ff7b63", 8 | "destructive_bg_color": "#c01c28", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#8ff0a4", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#cd9309", 15 | "warning_fg_color": "rgba(0,0,0,0.8)", 16 | "error_color": "#ff7b63", 17 | "error_bg_color": "#c01c28", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#1e1e1e", 20 | "window_fg_color": "#eeeeec", 21 | "view_bg_color": "#1e1e1e", 22 | "view_fg_color": "#eeeeec", 23 | "headerbar_bg_color": "#2b2c2b", 24 | "headerbar_fg_color": "#eeeeec", 25 | "headerbar_border_color": "#eeeeec", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#eeeeec", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#2e2e2e", 32 | "dialog_fg_color": "#eeeeec", 33 | "popover_bg_color": "#2e2e2e", 34 | "popover_fg_color": "#eeeeec", 35 | "shade_color": "rgba(0,0,0,0.36)", 36 | "scrollbar_outline_color": "rgba(0,0,0,0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/classic.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Classic", 3 | "variables": { 4 | "accent_color": "#73a8bf", 5 | "accent_bg_color": "#0077aa", 6 | "accent_fg_color": "#eeeeec", 7 | "destructive_color": "#c01c28", 8 | "destructive_bg_color": "rgb(224,27,36)", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#26a269", 11 | "success_bg_color": "#2ec27e", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#ae7b03", 14 | "warning_bg_color": "#e5a50a", 15 | "warning_fg_color": "rgba(0,0,0,0.8)", 16 | "error_color": "#c01c28", 17 | "error_bg_color": "#e01b24", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#fafafa", 20 | "window_fg_color": "#2a2a2a", 21 | "view_bg_color": "#fafafa", 22 | "view_fg_color": "#2a2a2a", 23 | "headerbar_bg_color": "#ebebec", 24 | "headerbar_fg_color": "#4d4e53", 25 | "headerbar_border_color": "#4d4e53", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#fdfdfd", 29 | "card_fg_color": "#2a2a2a", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#fafafa", 32 | "dialog_fg_color": "#2a2a2a", 33 | "popover_bg_color": "#fbfbfb", 34 | "popover_fg_color": "#2a2a2a", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "rgb(255,255,255)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/cobalt-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cobalt Dark", 3 | "variables": { 4 | "accent_color": "#1963a3", 5 | "accent_bg_color": "#0088ff", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff7b63", 8 | "destructive_bg_color": "#c01c28", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#8ff0a4", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#cd9309", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#ff7b63", 17 | "error_bg_color": "#c01c28", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#001b33", 20 | "window_fg_color": "#ffffff", 21 | "view_bg_color": "#001b33", 22 | "view_fg_color": "#ffffff", 23 | "headerbar_bg_color": "#162e44", 24 | "headerbar_fg_color": "#ffffff", 25 | "headerbar_border_color": "#ffffff", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#ffffff", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#122b41", 32 | "dialog_fg_color": "#ffffff", 33 | "popover_bg_color": "#122b41", 34 | "popover_fg_color": "#ffffff", 35 | "shade_color": "rgba(0,0,0,0.36)", 36 | "scrollbar_outline_color": "rgba(0,0,0,0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/cobalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cobalt", 3 | "variables": { 4 | "accent_color": "#7eb8e8", 5 | "accent_bg_color": "#30a0ff", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#c01c28", 8 | "destructive_bg_color": "#e01b24", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#26a269", 11 | "success_bg_color": "#2ec27e", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#ae7b03", 14 | "warning_bg_color": "#e5a50a", 15 | "warning_fg_color": "rgba(0,0,0,0.8)", 16 | "error_color": "#c01c28", 17 | "error_bg_color": "#e01b24", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#e4f4ff", 20 | "window_fg_color": "#20282e", 21 | "view_bg_color": "#e4f4ff", 22 | "view_fg_color": "#20282e", 23 | "headerbar_bg_color": "#d3e3ed", 24 | "headerbar_fg_color": "#20282e", 25 | "headerbar_border_color": "#20282e", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#f4fbff", 29 | "card_fg_color": "#20282e", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#e4f4ff", 32 | "dialog_fg_color": "#20282e", 33 | "popover_bg_color": "#e7f5ff", 34 | "popover_fg_color": "#20282e", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "rgb(255,255,255)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/everforest-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Everforest Dark", 3 | "variables": { 4 | "accent_color": "#7FBBB3", 5 | "accent_bg_color": "#3A515D", 6 | "accent_fg_color": "#D3C6AA", 7 | "destructive_color": "#E67E80", 8 | "destructive_bg_color": "#514045", 9 | "destructive_fg_color": "#D3C6AA", 10 | "success_color": "#A7C080", 11 | "success_bg_color": "#425047", 12 | "success_fg_color": "#D3C6AA", 13 | "warning_color": "#DBBC7F", 14 | "warning_bg_color": "#4D4C43", 15 | "warning_fg_color": "#D3C6AA", 16 | "error_color": "#E67E80", 17 | "error_bg_color": "#514045", 18 | "error_fg_color": "#D3C6AA", 19 | "window_bg_color": "#2D353B", 20 | "window_fg_color": "#D3C6AA", 21 | "view_bg_color": "#343F44", 22 | "view_fg_color": "#D3C6AA", 23 | "headerbar_bg_color": "#232A2E", 24 | "headerbar_fg_color": "#D3C6AA", 25 | "headerbar_border_color": "#ffffff", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#D3C6AA", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#3D484D", 32 | "dialog_fg_color": "#D3C6AA", 33 | "popover_bg_color": "#3D484D", 34 | "popover_fg_color": "#D3C6AA", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/everforest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Everforest", 3 | "variables": { 4 | "accent_color": "#3a94c5", 5 | "accent_bg_color": "#e9f0e9", 6 | "accent_fg_color": "#5c6a72", 7 | "destructive_color": "#f85552", 8 | "destructive_bg_color": "#fbe3da", 9 | "destructive_fg_color": "#5c6a72", 10 | "success_color": "#8da101", 11 | "success_bg_color": "#f0f1d2", 12 | "success_fg_color": "#5c6a72", 13 | "warning_color": "#dfa000", 14 | "warning_bg_color": "#faedcd", 15 | "warning_fg_color": "#5c6a72", 16 | "error_color": "#f85552", 17 | "error_bg_color": "#fbe3da", 18 | "error_fg_color": "#5c6a72", 19 | "window_bg_color": "#fdf6e3", 20 | "window_fg_color": "#5c6a72", 21 | "view_bg_color": "#f4f0d9", 22 | "view_fg_color": "#5c6a72", 23 | "headerbar_bg_color": "#efebd4", 24 | "headerbar_fg_color": "#5c6a72", 25 | "headerbar_border_color": "rgba(0, 0, 0, 0.8)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#5c6a72", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#efebd4", 32 | "dialog_fg_color": "#5c6a72", 33 | "popover_bg_color": "#efebd4", 34 | "popover_fg_color": "#5c6a72", 35 | "shade_color": "rgba(0, 0, 0, 0.07)", 36 | "scrollbar_outline_color": "#ffffff" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/gruvbox-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Gruvbox Dark", 3 | "variables": { 4 | "accent_color": "#fbf1c7", 5 | "accent_bg_color": "#ebdbb2", 6 | "accent_fg_color": "#282828", 7 | "destructive_color": "#fb4934", 8 | "destructive_bg_color": "#cc241d", 9 | "destructive_fg_color": "#ebdbb2", 10 | "success_color": "#b8bb26", 11 | "success_bg_color": "#98971a", 12 | "success_fg_color": "#ebdbb2", 13 | "warning_color": "#fabd2f", 14 | "warning_bg_color": "#d79921", 15 | "warning_fg_color": "#282828", 16 | "error_color": "#fb4934", 17 | "error_bg_color": "#cc241d", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#282828", 20 | "window_fg_color": "#ebdbb2", 21 | "view_bg_color": "#282828", 22 | "view_fg_color": "#ebdbb2", 23 | "headerbar_bg_color": "#3c3836", 24 | "headerbar_fg_color": "#fbf1c7", 25 | "headerbar_border_color": "#fbf1c7", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "#3c3836", 29 | "card_fg_color": "#ebdbb2", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#3c3836", 32 | "dialog_fg_color": "#fbf1c7", 33 | "popover_bg_color": "#3c3836", 34 | "popover_fg_color": "#fbf1c7", 35 | "shade_color": "rgba(0,0,0,0.36)", 36 | "scrollbar_outline_color": "rgba(0,0,0,0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "rgb(153,193,241)", 41 | "2": "rgb(98,160,234)", 42 | "3": "rgb(53,132,228)", 43 | "4": "rgb(28,113,216)", 44 | "5": "rgb(26,95,180)" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/gruvbox.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Gruvbox", 3 | "variables": { 4 | "accent_color": "#282828", 5 | "accent_bg_color": "#3c3836", 6 | "accent_fg_color": "#fbf1c7", 7 | "destructive_color": "#9d0006", 8 | "destructive_bg_color": "#cc241d", 9 | "destructive_fg_color": "#fbf1c7", 10 | "success_color": "#79740e", 11 | "success_bg_color": "#98971a", 12 | "success_fg_color": "#fbf1c7", 13 | "warning_color": "#b57614", 14 | "warning_bg_color": "#d79921", 15 | "warning_fg_color": "#3c3836", 16 | "error_color": "#9d0006", 17 | "error_bg_color": "#cc241d", 18 | "error_fg_color": "#fbf1c7", 19 | "window_bg_color": "#fbf1c7", 20 | "window_fg_color": "#3c3836", 21 | "view_bg_color": "#fbf1c7", 22 | "view_fg_color": "#3c3836", 23 | "headerbar_bg_color": "#ebdbb2", 24 | "headerbar_fg_color": "#504945", 25 | "headerbar_border_color": "#504945", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#f9f5d7", 29 | "card_fg_color": "#3c3836", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#ebdbb2", 32 | "dialog_fg_color": "#504945", 33 | "popover_bg_color": "#ebdbb2", 34 | "popover_fg_color": "#504945", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "rgb(255,255,255)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/kate-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kate Dark", 3 | "variables": { 4 | "accent_color": "#3b525e", 5 | "accent_bg_color": "#2d5c76", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff7b63", 8 | "destructive_bg_color": "#c01c28", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#8ff0a4", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#cd9309", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#ff7b63", 17 | "error_bg_color": "#c01c28", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#232629", 20 | "window_fg_color": "#cfcfc2", 21 | "view_bg_color": "#232629", 22 | "view_fg_color": "#cfcfc2", 23 | "headerbar_bg_color": "#323436", 24 | "headerbar_fg_color": "#cfcfc2", 25 | "headerbar_border_color": "#cfcfc2", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#cfcfc2", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#323538", 32 | "dialog_fg_color": "#cfcfc2", 33 | "popover_bg_color": "#323538", 34 | "popover_fg_color": "#cfcfc2", 35 | "shade_color": "rgba(0,0,0,0.36)", 36 | "scrollbar_outline_color": "rgba(0,0,0,0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/kate.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kate", 3 | "variables": { 4 | "accent_color": "#91c0db", 5 | "accent_bg_color": "#43ace8", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#c01c28", 8 | "destructive_bg_color": "#e01b24", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#26a269", 11 | "success_bg_color": "#2ec27e", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#ae7b03", 14 | "warning_bg_color": "#e5a50a", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#c01c28", 17 | "error_bg_color": "#e01b24", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#ffffff", 20 | "window_fg_color": "#000000", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#000000", 23 | "headerbar_bg_color": "#e9e9e9", 24 | "headerbar_fg_color": "#000000", 25 | "headerbar_border_color": "#000000", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#000000", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#ffffff", 32 | "dialog_fg_color": "#000000", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#000000", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "rgb(255,255,255)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/night-owl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Night Owl", 3 | "variables": { 4 | "accent_color": "#82AAFF", 5 | "accent_bg_color": "#82AAFF", 6 | "accent_fg_color": "#FFFFFF", 7 | "destructive_color": "#EF5350", 8 | "destructive_bg_color": "#EF5350", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#22DA6E", 11 | "success_bg_color": "#22DA6E", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#FFEB95", 14 | "warning_bg_color": "#ADDB67", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#EF5350", 17 | "error_bg_color": "#EF5350", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#011627", 20 | "window_fg_color": "#D6DEEB", 21 | "view_bg_color": "#011627", 22 | "view_fg_color": "#D6DEEB", 23 | "headerbar_bg_color": "#273947", 24 | "headerbar_fg_color": "#D6DEEB", 25 | "headerbar_border_color": "#ffffff", 26 | "headerbar_backdrop_color": "#011627", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#D6DEEB", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#273947", 32 | "dialog_fg_color": "#D6DEEB", 33 | "popover_bg_color": "#273947", 34 | "popover_fg_color": "#D6DEEB", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)", 37 | "thumbnail_bg_color": "#011627", 38 | "thumbnail_fg_color": "#D6DEEB" 39 | }, 40 | "palette": { 41 | "blue_": { 42 | "1": "#99c1f1", 43 | "2": "#62a0ea", 44 | "3": "#3584e4", 45 | "4": "#1c71d8", 46 | "5": "#1a5fb4" 47 | }, 48 | "green_": { 49 | "1": "#8ff0a4", 50 | "2": "#57e389", 51 | "3": "#33d17a", 52 | "4": "#2ec27e", 53 | "5": "#26a269" 54 | }, 55 | "yellow_": { 56 | "1": "#f9f06b", 57 | "2": "#f8e45c", 58 | "3": "#f6d32d", 59 | "4": "#f5c211", 60 | "5": "#e5a50a" 61 | }, 62 | "orange_": { 63 | "1": "#ffbe6f", 64 | "2": "#ffa348", 65 | "3": "#ff7800", 66 | "4": "#e66100", 67 | "5": "#c64600" 68 | }, 69 | "red_": { 70 | "1": "#f66151", 71 | "2": "#ed333b", 72 | "3": "#e01b24", 73 | "4": "#c01c28", 74 | "5": "#a51d2d" 75 | }, 76 | "purple_": { 77 | "1": "#dc8add", 78 | "2": "#c061cb", 79 | "3": "#9141ac", 80 | "4": "#813d9c", 81 | "5": "#613583" 82 | }, 83 | "brown_": { 84 | "1": "#cdab8f", 85 | "2": "#b5835a", 86 | "3": "#986a44", 87 | "4": "#865e3c", 88 | "5": "#63452c" 89 | }, 90 | "light_": { 91 | "1": "#ffffff", 92 | "2": "#f6f5f4", 93 | "3": "#deddda", 94 | "4": "#c0bfbc", 95 | "5": "#9a9996" 96 | }, 97 | "dark_": { 98 | "1": "#77767b", 99 | "2": "#5e5c64", 100 | "3": "#3d3846", 101 | "4": "#241f31", 102 | "5": "#000000" 103 | } 104 | }, 105 | "custom_css": { 106 | "gtk4": "", 107 | "gtk3": "" 108 | }, 109 | "plugins": {} 110 | } -------------------------------------------------------------------------------- /official/oblivion.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Oblivion", 3 | "variables": { 4 | "accent_color": "#696d6b", 5 | "accent_bg_color": "#888a85", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff7b63", 8 | "destructive_bg_color": "#c01c28", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#8ff0a4", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#cd9309", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#ff7b63", 17 | "error_bg_color": "#c01c28", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#2e3436", 20 | "window_fg_color": "#d3d7cf", 21 | "view_bg_color": "#2e3436", 22 | "view_fg_color": "#d3d7cf", 23 | "headerbar_bg_color": "#3c4243", 24 | "headerbar_fg_color": "#d3d7cf", 25 | "headerbar_border_color": "#d3d7cf", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#d3d7cf", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#3d4244", 32 | "dialog_fg_color": "#d3d7cf", 33 | "popover_bg_color": "#3d4244", 34 | "popover_fg_color": "#d3d7cf", 35 | "shade_color": "rgba(0,0,0,0.36)", 36 | "scrollbar_outline_color": "rgba(0,0,0,0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/peninsula-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Peninsula Dark", 3 | "variables": { 4 | "accent_color": "#405a7d", 5 | "accent_bg_color": "#3169b0", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff7b63", 8 | "destructive_bg_color": "#c01c28", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#8ff0a4", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#cd9309", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#ff7b63", 17 | "error_bg_color": "#c01c28", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#292a30", 20 | "window_fg_color": "#dfdfe0", 21 | "view_bg_color": "#292a30", 22 | "view_fg_color": "#dfdfe0", 23 | "headerbar_bg_color": "#38393f", 24 | "headerbar_fg_color": "#dfdfe0", 25 | "headerbar_border_color": "#dfdfe0", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#dfdfe0", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#38393f", 32 | "dialog_fg_color": "#dfdfe0", 33 | "popover_bg_color": "#38393f", 34 | "popover_fg_color": "#dfdfe0", 35 | "shade_color": "rgba(0,0,0,0.36)", 36 | "scrollbar_outline_color": "rgba(0,0,0,0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/peninsula.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Peninsula", 3 | "variables": { 4 | "accent_color": "#75ace7", 5 | "accent_bg_color": "#007bff", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#c01c28", 8 | "destructive_bg_color": "#e01b24", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#26a269", 11 | "success_bg_color": "#2ec27e", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#ae7b03", 14 | "warning_bg_color": "#e5a50a", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#c01c28", 17 | "error_bg_color": "#e01b24", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#ffffff", 20 | "window_fg_color": "#262626", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#262626", 23 | "headerbar_bg_color": "#f6f2f4", 24 | "headerbar_fg_color": "#4c4c4c", 25 | "headerbar_border_color": "#4c4c4c", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#262626", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#ffffff", 32 | "dialog_fg_color": "#262626", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#262626", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "rgb(255,255,255)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/pretty-purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pretty Purple", 3 | "variables": { 4 | "accent_color": "#dc8add", 5 | "accent_bg_color": "#9141ac", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff7b63", 8 | "destructive_bg_color": "#c01c28", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#8ff0a4", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#cd9309", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#ff7b63", 17 | "error_bg_color": "#c01c28", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#241f31", 20 | "window_fg_color": "#ffffff", 21 | "view_bg_color": "#363141", 22 | "view_fg_color": "#ffffff", 23 | "headerbar_bg_color": "#241f31", 24 | "headerbar_fg_color": "#ffffff", 25 | "headerbar_border_color": "#ffffff", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#ffffff", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#241f31", 32 | "dialog_fg_color": "#ffffff", 33 | "popover_bg_color": "#241f31", 34 | "popover_fg_color": "#ffffff", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/solarized-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Solarized Dark", 3 | "variables": { 4 | "accent_color": "#426068", 5 | "accent_bg_color": "#657b83", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#ff7b63", 8 | "destructive_bg_color": "#c01c28", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#8ff0a4", 11 | "success_bg_color": "#26a269", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#f8e45c", 14 | "warning_bg_color": "#cd9309", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#ff7b63", 17 | "error_bg_color": "#c01c28", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#002b36", 20 | "window_fg_color": "#93a1a1", 21 | "view_bg_color": "#002b36", 22 | "view_fg_color": "#93a1a1", 23 | "headerbar_bg_color": "#0c353f", 24 | "headerbar_fg_color": "#93a1a1", 25 | "headerbar_border_color": "#93a1a1", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "rgba(255, 255, 255, 0.08)", 29 | "card_fg_color": "#93a1a1", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#123a44", 32 | "dialog_fg_color": "#93a1a1", 33 | "popover_bg_color": "#123a44", 34 | "popover_fg_color": "#93a1a1", 35 | "shade_color": "rgba(0,0,0,0.36)", 36 | "scrollbar_outline_color": "rgba(0,0,0,0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/solarized.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Solarized", 3 | "variables": { 4 | "accent_color": "#b9bcb4", 5 | "accent_bg_color": "#93a1a1", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#c01c28", 8 | "destructive_bg_color": "#e01b24", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#26a269", 11 | "success_bg_color": "#2ec27e", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#ae7b03", 14 | "warning_bg_color": "#e5a50a", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#c01c28", 17 | "error_bg_color": "#e01b24", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#fdf6e3", 20 | "window_fg_color": "#586e75", 21 | "view_bg_color": "#fdf6e3", 22 | "view_fg_color": "#586e75", 23 | "headerbar_bg_color": "#efeada", 24 | "headerbar_fg_color": "#586e75", 25 | "headerbar_border_color": "#586e75", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#fefbf4", 29 | "card_fg_color": "#586e75", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#fdf6e3", 32 | "dialog_fg_color": "#586e75", 33 | "popover_bg_color": "#fdf7e6", 34 | "popover_fg_color": "#586e75", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "rgb(255,255,255)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/tango.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tango", 3 | "variables": { 4 | "accent_color": "#8db1dc", 5 | "accent_bg_color": "#3584e4", 6 | "accent_fg_color": "#ffffff", 7 | "destructive_color": "#c01c28", 8 | "destructive_bg_color": "#e01b24", 9 | "destructive_fg_color": "#ffffff", 10 | "success_color": "#26a269", 11 | "success_bg_color": "#2ec27e", 12 | "success_fg_color": "#ffffff", 13 | "warning_color": "#ae7b03", 14 | "warning_bg_color": "#e5a50a", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.8)", 16 | "error_color": "#c01c28", 17 | "error_bg_color": "#e01b24", 18 | "error_fg_color": "#ffffff", 19 | "window_bg_color": "#ffffff", 20 | "window_fg_color": "#2e3436", 21 | "view_bg_color": "#ffffff", 22 | "view_fg_color": "#2e3436", 23 | "headerbar_bg_color": "#edeeee", 24 | "headerbar_fg_color": "#2e3436", 25 | "headerbar_border_color": "#2e3436", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#ffffff", 29 | "card_fg_color": "#2e3436", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#ffffff", 32 | "dialog_fg_color": "#2e3436", 33 | "popover_bg_color": "#ffffff", 34 | "popover_fg_color": "#2e3436", 35 | "shade_color": "rgba(0,0,0,0.07)", 36 | "scrollbar_outline_color": "rgb(255,255,255)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/tokyonight-dark.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tokyo Night Dark", 3 | "variables": { 4 | "accent_color": "#a9b1d6", 5 | "accent_bg_color": "#a9b1d6", 6 | "accent_fg_color": "rgba(0, 0, 0, 0.87)", 7 | "destructive_color": "#F28B82", 8 | "destructive_bg_color": "#F28B82", 9 | "destructive_fg_color": "rgba(0, 0, 0, 0.87)", 10 | "success_color": "#81C995", 11 | "success_bg_color": "#81C995", 12 | "success_fg_color": "rgba(0, 0, 0, 0.87)", 13 | "warning_color": "#FDD633", 14 | "warning_bg_color": "#FDD633", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.87)", 16 | "error_color": "#F28B82", 17 | "error_bg_color": "#F28B82", 18 | "error_fg_color": "rgba(0, 0, 0, 0.87)", 19 | "window_bg_color": "#1a1b26", 20 | "window_fg_color": "#c0caf5", 21 | "view_bg_color": "#1a1b26", 22 | "view_fg_color": "#c0caf5", 23 | "headerbar_bg_color": "#1a1b26", 24 | "headerbar_fg_color": "#c0caf5", 25 | "headerbar_border_color": "rgba(192, 202, 245, 0.12)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "#1a1b26", 29 | "card_fg_color": "#c0caf5", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#1a1b26", 32 | "dialog_fg_color": "#c0caf5", 33 | "popover_bg_color": "#1a1b26", 34 | "popover_fg_color": "#c0caf5", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/tokyonight-moon.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tokyo Night Moon", 3 | "variables": { 4 | "accent_color": "#737aa2", 5 | "accent_bg_color": "#737aa2", 6 | "accent_fg_color": "rgba(0, 0, 0, 0.87)", 7 | "destructive_color": "#F28B82", 8 | "destructive_bg_color": "#F28B82", 9 | "destructive_fg_color": "rgba(0, 0, 0, 0.87)", 10 | "success_color": "#81C995", 11 | "success_bg_color": "#81C995", 12 | "success_fg_color": "rgba(0, 0, 0, 0.87)", 13 | "warning_color": "#FDD633", 14 | "warning_bg_color": "#FDD633", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.87)", 16 | "error_color": "#F28B82", 17 | "error_bg_color": "#F28B82", 18 | "error_fg_color": "rgba(0, 0, 0, 0.87)", 19 | "window_bg_color": "#222436", 20 | "window_fg_color": "#c8d3f5", 21 | "view_bg_color": "#222436", 22 | "view_fg_color": "#c8d3f5", 23 | "headerbar_bg_color": "#222436", 24 | "headerbar_fg_color": "#c8d3f5", 25 | "headerbar_border_color": "rgba(200, 211, 245, 0.12)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "#222436", 29 | "card_fg_color": "#c8d3f5", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#222436", 32 | "dialog_fg_color": "#c8d3f5", 33 | "popover_bg_color": "#222436", 34 | "popover_fg_color": "#c8d3f5", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/tokyonight-storm.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tokyo Night Storm", 3 | "variables": { 4 | "accent_color": "#a9b1d6", 5 | "accent_bg_color": "#a9b1d6", 6 | "accent_fg_color": "rgba(0, 0, 0, 0.87)", 7 | "destructive_color": "#F28B82", 8 | "destructive_bg_color": "#F28B82", 9 | "destructive_fg_color": "rgba(0, 0, 0, 0.87)", 10 | "success_color": "#81C995", 11 | "success_bg_color": "#81C995", 12 | "success_fg_color": "rgba(0, 0, 0, 0.87)", 13 | "warning_color": "#FDD633", 14 | "warning_bg_color": "#FDD633", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.87)", 16 | "error_color": "#F28B82", 17 | "error_bg_color": "#F28B82", 18 | "error_fg_color": "rgba(0, 0, 0, 0.87)", 19 | "window_bg_color": "#24283b", 20 | "window_fg_color": "#c0caf5", 21 | "view_bg_color": "#24283b", 22 | "view_fg_color": "#c0caf5", 23 | "headerbar_bg_color": "#24283b", 24 | "headerbar_fg_color": "#c0caf5", 25 | "headerbar_border_color": "rgba(192, 202, 245, 0.12)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.36)", 28 | "card_bg_color": "#24283b", 29 | "card_fg_color": "#c0caf5", 30 | "card_shade_color": "rgba(0, 0, 0, 0.36)", 31 | "dialog_bg_color": "#24283b", 32 | "dialog_fg_color": "#c0caf5", 33 | "popover_bg_color": "#24283b", 34 | "popover_fg_color": "#c0caf5", 35 | "shade_color": "rgba(0, 0, 0, 0.36)", 36 | "scrollbar_outline_color": "rgba(0, 0, 0, 0.5)" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /official/tokyonight.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tokyo Night", 3 | "variables": { 4 | "accent_color": "#3b4261", 5 | "accent_bg_color": "#3b4261", 6 | "accent_fg_color": "#e1e2e7", 7 | "destructive_color": "#D93025", 8 | "destructive_bg_color": "#D93025", 9 | "destructive_fg_color": "#e1e2e7", 10 | "success_color": "#0F9D58", 11 | "success_bg_color": "#0F9D58", 12 | "success_fg_color": "#e1e2e7", 13 | "warning_color": "#F4B400", 14 | "warning_bg_color": "#F4B400", 15 | "warning_fg_color": "rgba(0, 0, 0, 0.87)", 16 | "error_color": "#D93025", 17 | "error_bg_color": "#D93025", 18 | "error_fg_color": "#e1e2e7", 19 | "window_bg_color": "#e1e2e7", 20 | "window_fg_color": "rgba(0, 0, 0, 0.87)", 21 | "view_bg_color": "#e1e2e7", 22 | "view_fg_color": "rgba(0, 0, 0, 0.87)", 23 | "headerbar_bg_color": "#343b58", 24 | "headerbar_fg_color": "#e1e2e7", 25 | "headerbar_border_color": "rgba(0, 0, 0, 0.12)", 26 | "headerbar_backdrop_color": "@window_bg_color", 27 | "headerbar_shade_color": "rgba(0, 0, 0, 0.07)", 28 | "card_bg_color": "#e1e2e7", 29 | "card_fg_color": "rgba(0, 0, 0, 0.87)", 30 | "card_shade_color": "rgba(0, 0, 0, 0.07)", 31 | "dialog_bg_color": "#e1e2e7", 32 | "dialog_fg_color": "rgba(0, 0, 0, 0.87)", 33 | "popover_bg_color": "#e1e2e7", 34 | "popover_fg_color": "rgba(0, 0, 0, 0.87)", 35 | "shade_color": "rgba(0, 0, 0, 0.07)", 36 | "scrollbar_outline_color": "#e1e2e7" 37 | }, 38 | "palette": { 39 | "blue_": { 40 | "1": "#99c1f1", 41 | "2": "#62a0ea", 42 | "3": "#3584e4", 43 | "4": "#1c71d8", 44 | "5": "#1a5fb4" 45 | }, 46 | "green_": { 47 | "1": "#8ff0a4", 48 | "2": "#57e389", 49 | "3": "#33d17a", 50 | "4": "#2ec27e", 51 | "5": "#26a269" 52 | }, 53 | "yellow_": { 54 | "1": "#f9f06b", 55 | "2": "#f8e45c", 56 | "3": "#f6d32d", 57 | "4": "#f5c211", 58 | "5": "#e5a50a" 59 | }, 60 | "orange_": { 61 | "1": "#ffbe6f", 62 | "2": "#ffa348", 63 | "3": "#ff7800", 64 | "4": "#e66100", 65 | "5": "#c64600" 66 | }, 67 | "red_": { 68 | "1": "#f66151", 69 | "2": "#ed333b", 70 | "3": "#e01b24", 71 | "4": "#c01c28", 72 | "5": "#a51d2d" 73 | }, 74 | "purple_": { 75 | "1": "#dc8add", 76 | "2": "#c061cb", 77 | "3": "#9141ac", 78 | "4": "#813d9c", 79 | "5": "#613583" 80 | }, 81 | "brown_": { 82 | "1": "#cdab8f", 83 | "2": "#b5835a", 84 | "3": "#986a44", 85 | "4": "#865e3c", 86 | "5": "#63452c" 87 | }, 88 | "light_": { 89 | "1": "#ffffff", 90 | "2": "#f6f5f4", 91 | "3": "#deddda", 92 | "4": "#c0bfbc", 93 | "5": "#9a9996" 94 | }, 95 | "dark_": { 96 | "1": "#77767b", 97 | "2": "#5e5c64", 98 | "3": "#3d3846", 99 | "4": "#241f31", 100 | "5": "#000000" 101 | } 102 | }, 103 | "custom_css": { 104 | "gtk4": "", 105 | "gtk3": "" 106 | }, 107 | "plugins": {} 108 | } 109 | -------------------------------------------------------------------------------- /scripts/generate-preset-lists.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | # Generate lists of presets 4 | 5 | python3 scripts/update-official.py 6 | python3 scripts/update-curated.py 7 | 8 | # Push 9 | 10 | git config --global user.name 'Gradience Team' 11 | git config --global user.email 'AdwCustomizerTeam@proton.me' 12 | git add official.json curated.json 13 | git commit -m "ci: Generate preset list" 14 | git push 15 | -------------------------------------------------------------------------------- /scripts/update-curated.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | # Change the look of Adwaita, with ease 4 | # Copyright (C) 2022 Gradience Team 5 | # 6 | # This program is free software: you can redistribute it and/or modify 7 | # it under the terms of the GNU General Public License as published by 8 | # the Free Software Foundation, either version 3 of the License, or 9 | # (at your option) any later version. 10 | # 11 | # This program is distributed in the hope that it will be useful, 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | # GNU General Public License for more details. 15 | # 16 | # You should have received a copy of the GNU General Public License 17 | # along with this program. If not, see . 18 | 19 | # Created by @dominichayesferen for Gradience Team 20 | 21 | import os 22 | import json 23 | 24 | themeslist = {} #Dictionaries needs creating before you append to them, otherwise it'll UnboundLocalError 25 | 26 | for i in os.listdir("curated"): #Lists all files (and folders, but it doesn't matter) inside ./curated 27 | with open("curated/" + i, 'r') as pa: #Go through each file 28 | #NOTE: There is no .json filter in the above code - be aware that if any non-json file were to be added to that folder, json.loads will likely raise an exception 29 | palette = json.loads(pa.read()) #Use json module to convert the file's data to a dictionary 30 | themeslist[palette["name"]] = "https://github.com/GradienceTeam/Community/raw/next/curated/" + i #We know where they should be located, so we just put their filenames at the end of the link, and put that whole combined string into the themeslist dictionary, with its key being the in-palette-JSON name of the palette 31 | 32 | themenames = [] #Lists needs creating before you append to them, otherwise it'll UnboundLocalError 33 | for i in themeslist: #Get the keys of the dictionary in list format 34 | themenames.append(i) #Self-explanatory - adds the readable name to the themenames list 35 | themenames.sort() #.sort() alphabetically sorts the list it is ran on (note that .sort() cannot do X = X.sort(), as it'll set X to None) 36 | 37 | organisedthemeslist = {} #You get the idea with empty variables. 38 | for i in themenames: #For each theme's name, in the order .sort() caused 39 | organisedthemeslist[i] = themeslist[i] #Append the appropriate value from themeslist to organisedthemeslist - this essentially alphabetically sorts the dictionary on a key-by-key basis 40 | 41 | with open("curated.json", 'w') as fp: #This opens the file for writing. You might be wondering why there's no .close() - with "with open(...)", the file is automatically closed at the end of the with statement's execution 42 | fp.write(json.dumps(organisedthemeslist, indent=4)) #Save changes to curated.json 43 | -------------------------------------------------------------------------------- /scripts/update-official.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | # Change the look of Adwaita, with ease 4 | # Copyright (C) 2022 Gradience Team 5 | # 6 | # This program is free software: you can redistribute it and/or modify 7 | # it under the terms of the GNU General Public License as published by 8 | # the Free Software Foundation, either version 3 of the License, or 9 | # (at your option) any later version. 10 | # 11 | # This program is distributed in the hope that it will be useful, 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | # GNU General Public License for more details. 15 | # 16 | # You should have received a copy of the GNU General Public License 17 | # along with this program. If not, see . 18 | 19 | # Created by @dominichayesferen for Gradience Team 20 | 21 | import os 22 | import json 23 | 24 | themeslist = {} #Dictionaries needs creating before you append to them, otherwise it'll UnboundLocalError 25 | 26 | for i in os.listdir("official"): #Lists all files (and folders, but it doesn't matter) inside ./official 27 | with open("official/" + i, 'r') as pa: #Go through each file 28 | #NOTE: There is no .json filter in the above code - be aware that if any non-json file were to be added to that folder, json.loads will likely raise an exception 29 | palette = json.loads(pa.read()) #Use json module to convert the file's data to a dictionary 30 | themeslist[palette["name"]] = "https://github.com/GradienceTeam/Community/raw/next/official/" + i #We know where they should be located, so we just put their filenames at the end of the link, and put that whole combined string into the themeslist dictionary, with its key being the in-palette-JSON name of the palette 31 | 32 | themenames = [] #Lists needs creating before you append to them, otherwise it'll UnboundLocalError 33 | for i in themeslist: #Get the keys of the dictionary in list format 34 | themenames.append(i) #Self-explanatory - adds the readable name to the themenames list 35 | themenames.sort() #.sort() alphabetically sorts the list it is ran on (note that .sort() cannot do X = X.sort(), as it'll set X to None) 36 | 37 | organisedthemeslist = {} #You get the idea with empty variables. 38 | for i in themenames: #For each theme's name, in the order .sort() caused 39 | organisedthemeslist[i] = themeslist[i] #Append the appropriate value from themeslist to organisedthemeslist - this essentially alphabetically sorts the dictionary on a key-by-key basis 40 | 41 | with open("official.json", 'w') as fp: #This opens the file for writing. You might be wondering why there's no .close() - with "with open(...)", the file is automatically closed at the end of the with statement's execution 42 | fp.write(json.dumps(organisedthemeslist, indent=4)) #Save changes to official.json 43 | --------------------------------------------------------------------------------