Merge pull request #68 from rbbhn/spacegray-theme

Add base-16-default-schemes as color palettes
This commit is contained in:
Francesco Tomaselli 2025-01-22 20:32:26 +01:00 committed by GitHub
commit 1072817372
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 81 additions and 1 deletions

View file

@ -0,0 +1,15 @@
:root {
--content-primary: rgb(88, 80, 98); /*base07*/
--content-secondary: rgb(165, 157, 175); /*base04*/
--background: rgb(251, 241, 242); /*base00*/
--code-background: rgb(242, 241, 244); /*base01*/
--code-border: rgb(216, 213, 221); /*base02*/
}
.dark {
--content-primary: rgb(251, 241, 242); /*base00*/
--content-secondary: rgb(191, 185, 198); /*base03*/
--background: rgb(88, 80, 98); /*base07*/
--code-background: rgb(114, 103, 126); /*base06*/
--code-border: rgb(139, 129, 152); /*base05*/
}

View file

@ -0,0 +1,15 @@
:root {
--content-primary: rgb(24, 24, 24); /*base07*/
--content-secondary: rgb(88, 88, 88); /*base04*/
--background: rgb(248, 248, 248); /*base00*/
--code-background: rgb(232, 232, 232); /*base01*/
--code-border: rgb(216, 216, 216); /*base02*/
}
.dark {
--content-primary: rgb(248, 248, 248); /*base00*/
--content-secondary: rgb(184, 184, 184); /*base03*/
--background: rgb(24, 24, 24); /*base07*/
--code-background: rgb(40, 40, 40); /*base06*/
--code-border: rgb(56, 56, 56); /*base05*/
}

View file

@ -0,0 +1,15 @@
:root {
--content-primary: rgb(45, 45, 45); /*base00*/
--content-secondary: rgb(116, 115, 105); /*base03*/
--background: rgb(242, 240, 236); /*base07*/
--code-background: rgb(232, 230, 223); /*base06*/
--code-border: rgb(211, 208, 200); /*base05*/
}
.dark {
--content-primary: rgb(242, 240, 236); /*base07*/
--content-secondary: rgb(160, 159, 147); /*base04*/
--background: rgb(45, 45, 45); /*base00*/
--code-background: rgb(57, 57, 57); /*base01*/
--code-border: rgb(81, 81, 81); /*base02*/
}

View file

@ -0,0 +1,15 @@
:root {
--content-primary: rgb(59, 50, 40); /*base00*/
--content-secondary: rgb(126, 112, 90); /*base03*/
--background: rgb(245, 238, 235); /*base07*/
--code-background: rgb(233, 225, 221); /*base06*/
--code-border: rgb(208, 200, 198); /*base05*/
}
.dark {
--content-primary: rgb(245, 238, 235); /*base07*/
--content-secondary: rgb(184, 175, 173); /*base04*/
--background: rgb(59, 50, 40); /*base00*/
--code-background: rgb(83, 70, 54); /*base01*/
--code-border: rgb(100, 82, 64); /*base02*/
}

View file

@ -0,0 +1,15 @@
:root {
--content-primary: rgb(43, 48, 59); /*base00*/
--content-secondary: rgb(101, 115, 126); /*base03*/
--background: rgb(239, 241, 245); /*base07*/
--code-background: rgb(223, 225, 232); /*base06*/
--code-border: rgb(192, 197, 206); /*base05*/
}
.dark {
--content-primary: rgb(239, 241, 245); /*base07*/
--content-secondary: rgb(167, 173, 186); /*base04*/
--background: rgb(43, 48, 59); /*base00*/
--code-background: rgb(52, 61, 70); /*base01*/
--code-border: rgb(79, 91, 102); /*base02*/
}

View file

@ -40,7 +40,12 @@ This is the complete list of palettes available:
- default;
- catpuccin;
- gruvebox;
- eink.
- eink;
- base16-default;
- base16-eighties;
- base16-ocean;
- base16-mocha;
- base16-cupcake.
More are to come.