-
-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: RaiderHCPlay <[email protected]>
- Loading branch information
1 parent
a035d04
commit 14dd15d
Showing
3 changed files
with
315 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,302 @@ | ||
/* ==UserStyle== | ||
@name React Catppuccin | ||
@namespace github.com/catppuccin/userstyles/styles/react | ||
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/react | ||
@version 2000.01.01 | ||
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/react/catppuccin.user.less | ||
@supportURL https://github.com/catppuccin/userstyles/issues?q=is%3Aopen+is%3Aissue+label%3Areact | ||
@description Soothing pastel theme for React | ||
@author Catppuccin | ||
@license MIT | ||
@preprocessor less | ||
@var select lightFlavor "Light Flavor" ["latte:Latte*", "frappe:Frappé", "macchiato:Macchiato", "mocha:Mocha"] | ||
@var select darkFlavor "Dark Flavor" ["latte:Latte", "frappe:Frappé", "macchiato:Macchiato", "mocha:Mocha*"] | ||
@var select accentColor "Accent" ["rosewater:Rosewater", "flamingo:Flamingo", "pink:Pink", "mauve:Mauve*", "red:Red", "maroon:Maroon", "peach:Peach", "yellow:Yellow", "green:Green", "teal:Teal", "blue:Blue", "sapphire:Sapphire", "sky:Sky", "lavender:Lavender", "subtext0:Gray"] | ||
==/UserStyle== */ | ||
|
||
@-moz-document domain("react.dev") { | ||
|
||
|
||
// change flavor depending on switch toggle | ||
html.dark { | ||
#catppuccin(@darkFlavor); | ||
} | ||
|
||
html { | ||
#catppuccin(@lightFlavor); | ||
} | ||
|
||
|
||
#catppuccin(@flavor) { | ||
@rosewater: @catppuccin[@@flavor][@rosewater]; | ||
@flamingo: @catppuccin[@@flavor][@flamingo]; | ||
@pink: @catppuccin[@@flavor][@pink]; | ||
@mauve: @catppuccin[@@flavor][@mauve]; | ||
@red: @catppuccin[@@flavor][@red]; | ||
@maroon: @catppuccin[@@flavor][@maroon]; | ||
@peach: @catppuccin[@@flavor][@peach]; | ||
@yellow: @catppuccin[@@flavor][@yellow]; | ||
@green: @catppuccin[@@flavor][@green]; | ||
@teal: @catppuccin[@@flavor][@teal]; | ||
@sky: @catppuccin[@@flavor][@sky]; | ||
@sapphire: @catppuccin[@@flavor][@sapphire]; | ||
@blue: @catppuccin[@@flavor][@blue]; | ||
@lavender: @catppuccin[@@flavor][@lavender]; | ||
@text: @catppuccin[@@flavor][@text]; | ||
@subtext1: @catppuccin[@@flavor][@subtext1]; | ||
@subtext0: @catppuccin[@@flavor][@subtext0]; | ||
@overlay2: @catppuccin[@@flavor][@overlay2]; | ||
@overlay1: @catppuccin[@@flavor][@overlay1]; | ||
@overlay0: @catppuccin[@@flavor][@overlay0]; | ||
@surface2: @catppuccin[@@flavor][@surface2]; | ||
@surface1: @catppuccin[@@flavor][@surface1]; | ||
@surface0: @catppuccin[@@flavor][@surface0]; | ||
@base: @catppuccin[@@flavor][@base]; | ||
@mantle: @catppuccin[@@flavor][@mantle]; | ||
@crust: @catppuccin[@@flavor][@crust]; | ||
@accent: @catppuccin[@@flavor][@@accentColor]; | ||
|
||
color-scheme: if(@flavor = latte, light, dark); | ||
|
||
::selection { | ||
background-color: fade(@accent, 30%); | ||
} | ||
|
||
input, | ||
textarea { | ||
&::placeholder { | ||
color: @subtext0 !important; | ||
} | ||
} | ||
|
||
//svg styling | ||
|
||
svg { | ||
color: @accent!important; | ||
} | ||
|
||
//text styling | ||
|
||
.text-primary { | ||
color: @text; | ||
} | ||
|
||
.text-secondary { | ||
color: @text; | ||
} | ||
|
||
.text-gray-30 { | ||
color: @subtext1; | ||
} | ||
|
||
.text-red-50, .text-red-30 { | ||
color: @mantle!important; | ||
} | ||
|
||
.text-gray-50 { | ||
color: @subtext0; | ||
} | ||
|
||
.text-green-60, .text-green-40, .text-yellow-50, .text-yellow-40, .text-purple-30, .text-purple-50, .text-blue-50, .text-blue-40, .text-blue-30, .text-blue-60 { | ||
color: @mantle; | ||
} | ||
|
||
.text-tertiary, .text-tertiary-dark { | ||
color: @subtext0; | ||
} | ||
|
||
.text-link, .text-link-dark { | ||
color: @accent; | ||
} | ||
|
||
//hover styling | ||
|
||
.hover\:text-link:hover, .text-link:hover, .text-link-dark:hover{ | ||
color: @sapphire; | ||
} | ||
|
||
.hover\:bg-gray-80:hover, .hover\:bg-gray-5:hover { | ||
background-color: @mantle; | ||
} | ||
|
||
.hover\:bg-card:hover { | ||
background-color: @crust; | ||
} | ||
|
||
//code stylizing | ||
|
||
a > code { | ||
color: @sapphire !important; | ||
} | ||
|
||
.sp-wrapper { | ||
--sp-colors-accent: @accent; | ||
--sp-colors-clickable: @flamingo; | ||
--sp-colors-disabled: @text; | ||
--sp-colors-error: @red; | ||
--sp-colors-error-surface: @maroon; | ||
--sp-colors-surface1: @surface0; | ||
--sp-colors-surface2: @surface1; | ||
--sp-syntax-color-plain: @text; | ||
--sp-syntax-color-comment: @overlay2; | ||
--sp-syntax-color-keyword: @sapphire; | ||
--sp-syntax-color-tag: @peach; | ||
--sp-syntax-color-punctuation: @text; | ||
--sp-syntax-color-definition: @accent; | ||
--sp-syntax-color-property: @sapphire; | ||
--sp-syntax-color-static: @peach; | ||
--sp-syntax-color-string: @mauve; | ||
} | ||
|
||
//border styling | ||
|
||
.border-blue-40 { | ||
border-color: @blue; | ||
} | ||
|
||
.border-gray-300, .bg-gray-90 { | ||
border-color: @overlay2; | ||
} | ||
|
||
|
||
.border-link:hover { | ||
border-color: @sapphire; | ||
} | ||
|
||
//backgrounds styling | ||
|
||
.bg-card-dark, .bg-card { | ||
background-color: @surface0; | ||
} | ||
|
||
.bg-highlight { | ||
background-color: @crust; | ||
} | ||
|
||
.bg-highlight-dark { | ||
background-color: @mantle; | ||
} | ||
|
||
.bg-github-highlight { | ||
background-color: @surface1; | ||
} | ||
|
||
.bg-link { | ||
color: @surface0; | ||
background-color: @accent; | ||
} | ||
|
||
.bg-gradient-left, .bg-gradient-left-dark { | ||
background-image:conic-gradient(from 90deg at -10% 100%, @mantle 0deg,@base 90deg,@crust 1turn); | ||
} | ||
|
||
.bg-gray-3, .bg-gray-5 { | ||
background-color: @crust; | ||
} | ||
|
||
.bg-gray-40\/5, .bg-gray-60\/5 { | ||
background-color: @overlay1; | ||
} | ||
|
||
.bg-gray-40\/10, .bg-gray-60\/10 { | ||
background-color: @overlay0; | ||
} | ||
.bg-gray-30, .bg-gray-300, .bg-gray-70, .bg-gray-700 { | ||
background-color: @surface0; | ||
} | ||
|
||
.bg-gray-80, .bg-gray-200, .bg-gray-95 { | ||
background-color: @mantle; | ||
} | ||
|
||
.bg-black { | ||
background-color: @base; | ||
} | ||
|
||
.color-divs(@divColor, @bgLinkColor) { | ||
|
||
background-color: @divColor; | ||
|
||
svg { | ||
color: @mantle!important; | ||
} | ||
|
||
p { | ||
color: @mantle; | ||
} | ||
|
||
color: @mantle; | ||
|
||
.text-primary { | ||
color: @mantle; | ||
} | ||
|
||
.text-link { | ||
color: @bgLinkColor; | ||
} | ||
|
||
.bg-link { | ||
background-color: @bgLinkColor; | ||
} | ||
|
||
|
||
} | ||
|
||
.bg-green-5, .bg-green-60 { | ||
.color-divs(@green, @red); | ||
} | ||
|
||
.bg-yellow-5, .bg-yellow-60 { | ||
.color-divs(@peach, @red); | ||
} | ||
|
||
.bg-purple-5, .bg-purple-60 { | ||
.color-divs(@mauve, @flamingo); | ||
} | ||
|
||
.bg-blue-10, .bg-blue-60, .bg-blue-40 { | ||
.color-divs(@blue, @sky); | ||
} | ||
|
||
.bg-red-30 { | ||
background-color: @red; | ||
} | ||
|
||
.bg-gradient-right, .bg-gradient-right-dark { | ||
background-image: conic-gradient(from -90deg at 110% 100%, @crust 0deg, @base 90deg, @mantle 1turn); | ||
} | ||
|
||
.bg-white, .bg-wash { | ||
background-color: @base !important; | ||
} | ||
|
||
// docsearch styling | ||
|
||
--docsearch-modal-background: @base!important; | ||
--docsearch-hit-background: @mantle!important; | ||
--docsearch-highlight-color: @surface1!important; | ||
--docsearch-primary-color: @accent!important; | ||
--docsearch-container-background: rgba(127, 132, 156, .8)!important; | ||
--docsearch-text-color: @text!important; | ||
--docsearch-logo-color: @blue!important; | ||
--docsearch-muted-color: @overlay2!important; | ||
--docsearch-searchbox-background: @accent!important; | ||
--docsearch-searchbox-focus-background: @accent!important; | ||
--docsearch-hit-color: @crust!important; | ||
--docsearch-hit-active-color: @accent!important; | ||
--docsearch-footer-background: @overlay0!important; | ||
--docsearch-key-gradient: linear-gradient(-225deg, @base, @crust)!important; | ||
|
||
} | ||
} | ||
|
||
/* deno-fmt-ignore */ | ||
@catppuccin: { | ||
@latte: { @rosewater: #dc8a78; @flamingo: #dd7878; @pink: #ea76cb; @mauve: #8839ef; @red: #d20f39; @maroon: #e64553; @peach: #fe640b; @yellow: #df8e1d; @green: #40a02b; @teal: #179299; @sky: #04a5e5; @sapphire: #209fb5; @blue: #1e66f5; @lavender: #7287fd; @text: #4c4f69; @subtext1: #5c5f77; @subtext0: #6c6f85; @overlay2: #7c7f93; @overlay1: #8c8fa1; @overlay0: #9ca0b0; @surface2: #acb0be; @surface1: #bcc0cc; @surface0: #ccd0da; @base: #eff1f5; @mantle: #e6e9ef; @crust: #dce0e8; }; | ||
@frappe: { @rosewater: #f2d5cf; @flamingo: #eebebe; @pink: #f4b8e4; @mauve: #ca9ee6; @red: #e78284; @maroon: #ea999c; @peach: #ef9f76; @yellow: #e5c890; @green: #a6d189; @teal: #81c8be; @sky: #99d1db; @sapphire: #85c1dc; @blue: #8caaee; @lavender: #babbf1; @text: #c6d0f5; @subtext1: #b5bfe2; @subtext0: #a5adce; @overlay2: #949cbb; @overlay1: #838ba7; @overlay0: #737994; @surface2: #626880; @surface1: #51576d; @surface0: #414559; @base: #303446; @mantle: #292c3c; @crust: #232634; }; | ||
@macchiato: { @rosewater: #f4dbd6; @flamingo: #f0c6c6; @pink: #f5bde6; @mauve: #c6a0f6; @red: #ed8796; @maroon: #ee99a0; @peach: #f5a97f; @yellow: #eed49f; @green: #a6da95; @teal: #8bd5ca; @sky: #91d7e3; @sapphire: #7dc4e4; @blue: #8aadf4; @lavender: #b7bdf8; @text: #cad3f5; @subtext1: #b8c0e0; @subtext0: #a5adcb; @overlay2: #939ab7; @overlay1: #8087a2; @overlay0: #6e738d; @surface2: #5b6078; @surface1: #494d64; @surface0: #363a4f; @base: #24273a; @mantle: #1e2030; @crust: #181926; }; | ||
@mocha: { @rosewater: #f5e0dc; @flamingo: #f2cdcd; @pink: #f5c2e7; @mauve: #cba6f7; @red: #f38ba8; @maroon: #eba0ac; @peach: #fab387; @yellow: #f9e2af; @green: #a6e3a1; @teal: #94e2d5; @sky: #89dceb; @sapphire: #74c7ec; @blue: #89b4fa; @lavender: #b4befe; @text: #cdd6f4; @subtext1: #bac2de; @subtext0: #a6adc8; @overlay2: #9399b2; @overlay1: #7f849c; @overlay0: #6c7086; @surface2: #585b70; @surface1: #45475a; @surface0: #313244; @base: #1e1e2e; @mantle: #181825; @crust: #11111b; }; | ||
}; |
Git LFS file not shown