├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp └── preview.webp ├── shadcn-ui.tera └── themes ├── frappe ├── frappe-blue.css ├── frappe-flamingo.css ├── frappe-green.css ├── frappe-lavender.css ├── frappe-maroon.css ├── frappe-mauve.css ├── frappe-peach.css ├── frappe-pink.css ├── frappe-red.css ├── frappe-rosewater.css ├── frappe-sapphire.css ├── frappe-sky.css ├── frappe-teal.css └── frappe-yellow.css ├── latte ├── latte-blue.css ├── latte-flamingo.css ├── latte-green.css ├── latte-lavender.css ├── latte-maroon.css ├── latte-mauve.css ├── latte-peach.css ├── latte-pink.css ├── latte-red.css ├── latte-rosewater.css ├── latte-sapphire.css ├── latte-sky.css ├── latte-teal.css └── latte-yellow.css ├── macchiato ├── macchiato-blue.css ├── macchiato-flamingo.css ├── macchiato-green.css ├── macchiato-lavender.css ├── macchiato-maroon.css ├── macchiato-mauve.css ├── macchiato-peach.css ├── macchiato-pink.css ├── macchiato-red.css ├── macchiato-rosewater.css ├── macchiato-sapphire.css ├── macchiato-sky.css ├── macchiato-teal.css └── macchiato-yellow.css └── mocha ├── mocha-blue.css ├── mocha-flamingo.css ├── mocha-green.css ├── mocha-lavender.css ├── mocha-maroon.css ├── mocha-mauve.css ├── mocha-peach.css ├── mocha-pink.css ├── mocha-red.css ├── mocha-rosewater.css ├── mocha-sapphire.css ├── mocha-sky.css ├── mocha-teal.css └── mocha-yellow.css /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # EditorConfig is awesome: https://EditorConfig.org 4 | 5 | root = true 6 | 7 | [*] 8 | charset = utf-8 9 | indent_size = 2 10 | indent_style = space 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | # go 16 | [*.go] 17 | indent_style = tab 18 | indent_size = 4 19 | 20 | # python 21 | [*.{ini,py,py.tpl,rst}] 22 | indent_size = 4 23 | 24 | # rust 25 | [*.rs] 26 | indent_size = 4 27 | 28 | # documentation, utils 29 | [*.{md,mdx,diff}] 30 | trim_trailing_whitespace = false 31 | 32 | # windows shell scripts 33 | [*.{cmd,bat,ps1}] 34 | end_of_line = crlf 35 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Catppuccin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
15 |
16 |
52 |
53 |
56 | Copyright © 2021-present Catppuccin Org 57 |
58 | 59 | 62 | -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/shadcn-ui/a5a7653ea304f9bb9138401fb4d2e25fd0fd4e4d/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/shadcn-ui/a5a7653ea304f9bb9138401fb4d2e25fd0fd4e4d/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/shadcn-ui/a5a7653ea304f9bb9138401fb4d2e25fd0fd4e4d/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/shadcn-ui/a5a7653ea304f9bb9138401fb4d2e25fd0fd4e4d/assets/mocha.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tnixc/shadcn-ui/a5a7653ea304f9bb9138401fb4d2e25fd0fd4e4d/assets/preview.webp -------------------------------------------------------------------------------- /shadcn-ui.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: 2.0.0 4 | matrix: 5 | - flavor 6 | - accent 7 | filename: "themes/{{flavor.identifier}}/{{flavor.identifier}}-{{accent}}.css" 8 | --- 9 | --radius: 0.625rem; 10 | --background: {{base.hsl.h}} {{base.hsl.s * 100}}% {{base.hsl.l * 100}}%; /* base */ 11 | --foreground: {{text.hsl.h}} {{text.hsl.s * 100}}% {{text.hsl.l * 100}}%; /* text */ 12 | --card: {{base.hsl.h}} {{base.hsl.s * 100}}% {{base.hsl.l * 100}}%; /* base */ 13 | --card-foreground: {{text.hsl.h}} {{text.hsl.s * 100}}% {{text.hsl.l * 100}}%; /* text */ 14 | --popover: {{base.hsl.h}} {{base.hsl.s * 100}}% {{base.hsl.l * 100}}%; /* base */ 15 | --popover-foreground: {{text.hsl.h}} {{text.hsl.s * 100}}% {{text.hsl.l * 100}}%; /* text */ 16 | --primary: {{flavor.colors[accent].hsl.h}} {{flavor.colors[accent].hsl.s * 100}}% {{flavor.colors[accent].hsl.l * 100}}%; /* accent - {{flavor.colors[accent].name}} */ 17 | --primary-foreground: {{base.hsl.h}} {{base.hsl.s * 100}}% {{base.hsl.l * 100}}%; /* base */ 18 | --secondary: {{surface0.hsl.h}} {{surface0.hsl.s * 100}}% {{surface0.hsl.l * 100}}%; /* surface0 */ 19 | --secondary-foreground: {{text.hsl.h}} {{text.hsl.s * 100}}% {{text.hsl.l * 100}}%; /* text */ 20 | --muted: {{surface0.hsl.h}} {{surface0.hsl.s * 100}}% {{surface0.hsl.l * 100}}%; /* surface0 */ 21 | --muted-foreground: {{subtext1.hsl.h}} {{subtext1.hsl.s * 100}}% {{subtext1.hsl.l * 100}}%; /* subtext1 */ 22 | --accent: {{surface0.hsl.h}} {{surface0.hsl.s * 100}}% {{surface0.hsl.l * 100}}%; /* surface0 */ 23 | --accent-foreground: {{text.hsl.h}} {{text.hsl.s * 100}}% {{text.hsl.l * 100}}%; /* text */ 24 | --destructive: {{red.hsl.h}} {{red.hsl.s * 100}}% {{red.hsl.l * 100}}%; /* red */ 25 | --border: {{surface1.hsl.h}} {{surface1.hsl.s * 100}}% {{surface1.hsl.l * 100}}%; /* surface1 */ 26 | --input: {{surface1.hsl.h}} {{surface1.hsl.s * 100}}% {{surface1.hsl.l * 100}}%; /* surface1 */ 27 | --ring: {{text.hsl.h}} {{text.hsl.s * 100}}% {{text.hsl.l * 100}}%; /* text */ 28 | --chart-1: {{red.hsl.h}} {{red.hsl.s * 100}}% {{red.hsl.l * 100}}%; /* red */ 29 | --chart-2: {{teal.hsl.h}} {{teal.hsl.s * 100}}% {{teal.hsl.l * 100}}%; /* teal */ 30 | --chart-3: {{blue.hsl.h}} {{blue.hsl.s * 100}}% {{blue.hsl.l * 100}}%; /* blue */ 31 | --chart-4: {{yellow.hsl.h}} {{yellow.hsl.s * 100}}% {{yellow.hsl.l * 100}}%; /* yellow */ 32 | --chart-5: {{green.hsl.h}} {{green.hsl.s * 100}}% {{green.hsl.l * 100}}%; /* green */ 33 | --sidebar: {{mantle.hsl.h}} {{mantle.hsl.s * 100}}% {{mantle.hsl.l * 100}}%; /* mantle */ 34 | --sidebar-foreground: {{text.hsl.h}} {{text.hsl.s * 100}}% {{text.hsl.l * 100}}%; /* text */ 35 | --sidebar-primary: {{flavor.colors[accent].hsl.h}} {{flavor.colors[accent].hsl.s * 100}}% {{flavor.colors[accent].hsl.l * 100}}%; /* accent - {{flavor.colors[accent].name}} */ 36 | --sidebar-primary-foreground: {{base.hsl.h}} {{base.hsl.s * 100}}% {{base.hsl.l * 100}}%; /* base */ 37 | --sidebar-accent: {{surface0.hsl.h}} {{surface0.hsl.s * 100}}% {{surface0.hsl.l * 100}}%; /* surface0 */ 38 | --sidebar-accent-foreground: {{text.hsl.h}} {{text.hsl.s * 100}}% {{text.hsl.l * 100}}%; /* text */ 39 | --sidebar-border: {{surface1.hsl.h}} {{surface1.hsl.s * 100}}% {{surface1.hsl.l * 100}}%; /* surface1 */ 40 | --sidebar-ring: {{surface1.hsl.h}} {{surface1.hsl.s * 100}}% {{surface1.hsl.l * 100}}%; /* surface1 */ 41 | -------------------------------------------------------------------------------- /themes/frappe/frappe-blue.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 222 74.24242496490479% 74.11764860153198%; /* accent - Blue */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 222 74.24242496490479% 74.11764860153198%; /* accent - Blue */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-flamingo.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 0 58.53658318519592% 83.92156958580017%; /* accent - Flamingo */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 0 58.53658318519592% 83.92156958580017%; /* accent - Flamingo */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-green.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 96 43.90243887901306% 67.84313917160034%; /* accent - Green */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 96 43.90243887901306% 67.84313917160034%; /* accent - Green */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-lavender.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 239 66.26505851745605% 83.72548818588257%; /* accent - Lavender */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 239 66.26505851745605% 83.72548818588257%; /* accent - Lavender */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-maroon.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 358 65.85366129875183% 75.88235139846802%; /* accent - Maroon */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 358 65.85366129875183% 75.88235139846802%; /* accent - Maroon */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-mauve.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 277 59.01639461517334% 76.07843279838562%; /* accent - Mauve */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 277 59.01639461517334% 76.07843279838562%; /* accent - Mauve */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-peach.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 20 79.08496856689453% 69.9999988079071%; /* accent - Peach */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 20 79.08496856689453% 69.9999988079071%; /* accent - Peach */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-pink.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 316 73.17073345184326% 83.92156958580017%; /* accent - Pink */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 316 73.17073345184326% 83.92156958580017%; /* accent - Pink */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-red.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 359 67.78523325920105% 70.78431248664856%; /* accent - Red */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 359 67.78523325920105% 70.78431248664856%; /* accent - Red */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-rosewater.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 10 57.37704634666443% 88.03921341896057%; /* accent - Rosewater */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 10 57.37704634666443% 88.03921341896057%; /* accent - Rosewater */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-sapphire.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 199 55.41401505470276% 69.21568512916565%; /* accent - Sapphire */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 199 55.41401505470276% 69.21568512916565%; /* accent - Sapphire */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-sky.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 189 47.826087474823% 72.9411780834198%; /* accent - Sky */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 189 47.826087474823% 72.9411780834198%; /* accent - Sky */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-teal.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 172 39.22652006149292% 64.50980305671692%; /* accent - Teal */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 172 39.22652006149292% 64.50980305671692%; /* accent - Teal */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/frappe/frappe-yellow.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 229 18.644067645072937% 23.137255012989044%; /* base */ 3 | --foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 4 | --card: 229 18.644067645072937% 23.137255012989044%; /* base */ 5 | --card-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 6 | --popover: 229 18.644067645072937% 23.137255012989044%; /* base */ 7 | --popover-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 8 | --primary: 40 62.043797969818115% 73.13725352287292%; /* accent - Yellow */ 9 | --primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 10 | --secondary: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 11 | --secondary-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 12 | --muted: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 13 | --muted-foreground: 227 43.689319491386414% 79.8039197921753%; /* subtext1 */ 14 | --accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 15 | --accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 16 | --destructive: 359 67.78523325920105% 70.78431248664856%; /* red */ 17 | --border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 18 | --input: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 19 | --ring: 227 70.14925479888916% 86.86274290084839%; /* text */ 20 | --chart-1: 359 67.78523325920105% 70.78431248664856%; /* red */ 21 | --chart-2: 172 39.22652006149292% 64.50980305671692%; /* teal */ 22 | --chart-3: 222 74.24242496490479% 74.11764860153198%; /* blue */ 23 | --chart-4: 40 62.043797969818115% 73.13725352287292%; /* yellow */ 24 | --chart-5: 96 43.90243887901306% 67.84313917160034%; /* green */ 25 | --sidebar: 231 18.81188154220581% 19.80392187833786%; /* mantle */ 26 | --sidebar-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 27 | --sidebar-primary: 40 62.043797969818115% 73.13725352287292%; /* accent - Yellow */ 28 | --sidebar-primary-foreground: 229 18.644067645072937% 23.137255012989044%; /* base */ 29 | --sidebar-accent: 230 15.584415197372437% 30.19607961177826%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 70.14925479888916% 86.86274290084839%; /* text */ 31 | --sidebar-border: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 32 | --sidebar-ring: 227 14.73684161901474% 37.254902720451355%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-blue.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 220 91.4893627166748% 53.921568393707275%; /* accent - Blue */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 220 91.4893627166748% 53.921568393707275%; /* accent - Blue */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-flamingo.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 0 59.763312339782715% 66.86274409294128%; /* accent - Flamingo */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 0 59.763312339782715% 66.86274409294128%; /* accent - Flamingo */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-green.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 109 57.63546824455261% 39.803922176361084%; /* accent - Green */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 109 57.63546824455261% 39.803922176361084%; /* accent - Green */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-lavender.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 231 97.20279574394226% 71.96078300476074%; /* accent - Lavender */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 231 97.20279574394226% 71.96078300476074%; /* accent - Lavender */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-maroon.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 355 76.30331516265869% 58.627450466156006%; /* accent - Maroon */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 355 76.30331516265869% 58.627450466156006%; /* accent - Maroon */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-mauve.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 266 85.04672646522522% 58.03921818733215%; /* accent - Mauve */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 266 85.04672646522522% 58.03921818733215%; /* accent - Mauve */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-peach.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 22 99.18367266654968% 51.96078419685364%; /* accent - Peach */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 22 99.18367266654968% 51.96078419685364%; /* accent - Peach */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-pink.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 316 73.41772317886353% 69.01960968971252%; /* accent - Pink */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 316 73.41772317886353% 69.01960968971252%; /* accent - Pink */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-red.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 347 86.66666746139526% 44.11764740943909%; /* accent - Red */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 347 86.66666746139526% 44.11764740943909%; /* accent - Red */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-rosewater.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 11 58.82353186607361% 66.66666865348816%; /* accent - Rosewater */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 11 58.82353186607361% 66.66666865348816%; /* accent - Rosewater */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-sapphire.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 189 69.953054189682% 41.76470637321472%; /* accent - Sapphire */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 189 69.953054189682% 41.76470637321472%; /* accent - Sapphire */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-sky.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 197 96.56652212142944% 45.686274766922%; /* accent - Sky */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 197 96.56652212142944% 45.686274766922%; /* accent - Sky */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-teal.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 183 73.86363744735718% 34.50980484485626%; /* accent - Teal */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 183 73.86363744735718% 34.50980484485626%; /* accent - Teal */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/latte/latte-yellow.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 220 23.076923191547394% 94.90196108818054%; /* base */ 3 | --foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 4 | --card: 220 23.076923191547394% 94.90196108818054%; /* base */ 5 | --card-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 6 | --popover: 220 23.076923191547394% 94.90196108818054%; /* base */ 7 | --popover-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 8 | --primary: 35 76.98412537574768% 49.41176474094391%; /* accent - Yellow */ 9 | --primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 10 | --secondary: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 11 | --secondary-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 12 | --muted: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 13 | --muted-foreground: 233 12.796208262443542% 41.372549533843994%; /* subtext1 */ 14 | --accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 15 | --accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 16 | --destructive: 347 86.66666746139526% 44.11764740943909%; /* red */ 17 | --border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 18 | --input: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 19 | --ring: 234 16.022099554538727% 35.49019694328308%; /* text */ 20 | --chart-1: 347 86.66666746139526% 44.11764740943909%; /* red */ 21 | --chart-2: 183 73.86363744735718% 34.50980484485626%; /* teal */ 22 | --chart-3: 220 91.4893627166748% 53.921568393707275%; /* blue */ 23 | --chart-4: 35 76.98412537574768% 49.41176474094391%; /* yellow */ 24 | --chart-5: 109 57.63546824455261% 39.803922176361084%; /* green */ 25 | --sidebar: 220 21.95121943950653% 91.96078181266785%; /* mantle */ 26 | --sidebar-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 27 | --sidebar-primary: 35 76.98412537574768% 49.41176474094391%; /* accent - Yellow */ 28 | --sidebar-primary-foreground: 220 23.076923191547394% 94.90196108818054%; /* base */ 29 | --sidebar-accent: 223 15.909090638160706% 82.74509906768799%; /* surface0 */ 30 | --sidebar-accent-foreground: 234 16.022099554538727% 35.49019694328308%; /* text */ 31 | --sidebar-border: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 32 | --sidebar-ring: 225 13.55932205915451% 76.86274647712708%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-blue.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 220 82.8125% 74.90196228027344%; /* accent - Blue */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 220 82.8125% 74.90196228027344%; /* accent - Blue */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-flamingo.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 0 58.33333134651184% 85.88235378265381%; /* accent - Flamingo */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 0 58.33333134651184% 85.88235378265381%; /* accent - Flamingo */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-green.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 105 48.25174808502197% 71.96078300476074%; /* accent - Green */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 105 48.25174808502197% 71.96078300476074%; /* accent - Green */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-lavender.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 234 82.27847814559937% 84.50980186462402%; /* accent - Lavender */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 234 82.27847814559937% 84.50980186462402%; /* accent - Lavender */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-maroon.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 355 71.42857313156128% 76.66666507720947%; /* accent - Maroon */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 355 71.42857313156128% 76.66666507720947%; /* accent - Maroon */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-mauve.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 267 82.69230723381042% 79.60784435272217%; /* accent - Mauve */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 267 82.69230723381042% 79.60784435272217%; /* accent - Mauve */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-peach.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 21 85.50724387168884% 72.9411780834198%; /* accent - Peach */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 21 85.50724387168884% 72.9411780834198%; /* accent - Peach */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-pink.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 316 73.68420958518982% 85.09804010391235%; /* accent - Pink */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 316 73.68420958518982% 85.09804010391235%; /* accent - Pink */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-red.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 351 73.9130437374115% 72.9411780834198%; /* accent - Red */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 351 73.9130437374115% 72.9411780834198%; /* accent - Red */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-rosewater.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 10 57.692307233810425% 89.80392217636108%; /* accent - Rosewater */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 10 57.692307233810425% 89.80392217636108%; /* accent - Rosewater */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-sapphire.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 199 65.6050980091095% 69.21568512916565%; /* accent - Sapphire */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 199 65.6050980091095% 69.21568512916565%; /* accent - Sapphire */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-sky.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 189 59.42028760910034% 72.9411780834198%; /* accent - Sky */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 189 59.42028760910034% 72.9411780834198%; /* accent - Sky */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-teal.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 171 46.83544337749481% 69.01960968971252%; /* accent - Teal */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 171 46.83544337749481% 69.01960968971252%; /* accent - Teal */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/macchiato/macchiato-yellow.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 232 23.404255509376526% 18.431372940540314%; /* base */ 3 | --foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 4 | --card: 232 23.404255509376526% 18.431372940540314%; /* base */ 5 | --card-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 6 | --popover: 232 23.404255509376526% 18.431372940540314%; /* base */ 7 | --popover-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 8 | --primary: 40 69.91150379180908% 77.84313559532166%; /* accent - Yellow */ 9 | --primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 10 | --secondary: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 11 | --secondary-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 12 | --muted: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 13 | --muted-foreground: 228 39.21568691730499% 80.0000011920929%; /* subtext1 */ 14 | --accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 15 | --accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 16 | --destructive: 351 73.9130437374115% 72.9411780834198%; /* red */ 17 | --border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 18 | --input: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 19 | --ring: 227 68.2539701461792% 87.64705657958984%; /* text */ 20 | --chart-1: 351 73.9130437374115% 72.9411780834198%; /* red */ 21 | --chart-2: 171 46.83544337749481% 69.01960968971252%; /* teal */ 22 | --chart-3: 220 82.8125% 74.90196228027344%; /* blue */ 23 | --chart-4: 40 69.91150379180908% 77.84313559532166%; /* yellow */ 24 | --chart-5: 105 48.25174808502197% 71.96078300476074%; /* green */ 25 | --sidebar: 233 23.076923191547394% 15.294118225574493%; /* mantle */ 26 | --sidebar-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 27 | --sidebar-primary: 40 69.91150379180908% 77.84313559532166%; /* accent - Yellow */ 28 | --sidebar-primary-foreground: 232 23.404255509376526% 18.431372940540314%; /* base */ 29 | --sidebar-accent: 230 18.796992301940918% 26.07843279838562%; /* surface0 */ 30 | --sidebar-accent-foreground: 227 68.2539701461792% 87.64705657958984%; /* text */ 31 | --sidebar-border: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 32 | --sidebar-ring: 231 15.606936812400818% 33.92156958580017%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-blue.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 217 91.86992049217224% 75.88235139846802%; /* accent - Blue */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 217 91.86992049217224% 75.88235139846802%; /* accent - Blue */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-flamingo.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 0 58.73016119003296% 87.64705657958984%; /* accent - Flamingo */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 0 58.73016119003296% 87.64705657958984%; /* accent - Flamingo */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-green.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 115 54.09836173057556% 76.07843279838562%; /* accent - Green */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 115 54.09836173057556% 76.07843279838562%; /* accent - Green */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-lavender.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 232 97.36841917037964% 85.09804010391235%; /* accent - Lavender */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 232 97.36841917037964% 85.09804010391235%; /* accent - Lavender */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-maroon.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 350 65.21739363670349% 77.45097875595093%; /* accent - Maroon */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 350 65.21739363670349% 77.45097875595093%; /* accent - Maroon */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-mauve.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 267 83.50515365600586% 80.98039031028748%; /* accent - Mauve */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 267 83.50515365600586% 80.98039031028748%; /* accent - Mauve */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-peach.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 23 92.00000166893005% 75.49019455909729%; /* accent - Peach */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 23 92.00000166893005% 75.49019455909729%; /* accent - Peach */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-pink.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 316 71.83098793029785% 86.07842922210693%; /* accent - Pink */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 316 71.83098793029785% 86.07842922210693%; /* accent - Pink */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-red.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 343 81.25% 74.90196228027344%; /* accent - Red */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 343 81.25% 74.90196228027344%; /* accent - Red */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-rosewater.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 10 55.55555820465088% 91.17646813392639%; /* accent - Rosewater */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 10 55.55555820465088% 91.17646813392639%; /* accent - Rosewater */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-sapphire.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 199 75.94936490058899% 69.01960968971252%; /* accent - Sapphire */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 199 75.94936490058899% 69.01960968971252%; /* accent - Sapphire */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-sky.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 189 71.01449370384216% 72.9411780834198%; /* accent - Sky */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 189 71.01449370384216% 72.9411780834198%; /* accent - Sky */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-teal.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 170 57.35294222831726% 73.33333492279053%; /* accent - Teal */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 170 57.35294222831726% 73.33333492279053%; /* accent - Teal */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | -------------------------------------------------------------------------------- /themes/mocha/mocha-yellow.css: -------------------------------------------------------------------------------- 1 | --radius: 0.625rem; 2 | --background: 240 21.052631735801697% 14.901961386203766%; /* base */ 3 | --foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 4 | --card: 240 21.052631735801697% 14.901961386203766%; /* base */ 5 | --card-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 6 | --popover: 240 21.052631735801697% 14.901961386203766%; /* base */ 7 | --popover-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 8 | --primary: 41 86.04651093482971% 83.13725590705872%; /* accent - Yellow */ 9 | --primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 10 | --secondary: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 11 | --secondary-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 12 | --muted: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 13 | --muted-foreground: 227 35.29411852359772% 80.0000011920929%; /* subtext1 */ 14 | --accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 15 | --accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 16 | --destructive: 343 81.25% 74.90196228027344%; /* red */ 17 | --border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 18 | --input: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 19 | --ring: 226 63.93442749977112% 88.03921341896057%; /* text */ 20 | --chart-1: 343 81.25% 74.90196228027344%; /* red */ 21 | --chart-2: 170 57.35294222831726% 73.33333492279053%; /* teal */ 22 | --chart-3: 217 91.86992049217224% 75.88235139846802%; /* blue */ 23 | --chart-4: 41 86.04651093482971% 83.13725590705872%; /* yellow */ 24 | --chart-5: 115 54.09836173057556% 76.07843279838562%; /* green */ 25 | --sidebar: 240 21.311475336551666% 11.96078434586525%; /* mantle */ 26 | --sidebar-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 27 | --sidebar-primary: 41 86.04651093482971% 83.13725590705872%; /* accent - Yellow */ 28 | --sidebar-primary-foreground: 240 21.052631735801697% 14.901961386203766%; /* base */ 29 | --sidebar-accent: 237 16.239316761493683% 22.94117659330368%; /* surface0 */ 30 | --sidebar-accent-foreground: 226 63.93442749977112% 88.03921341896057%; /* text */ 31 | --sidebar-border: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 32 | --sidebar-ring: 234 13.20754736661911% 31.176471710205078%; /* surface1 */ 33 | --------------------------------------------------------------------------------