diff options
-rw-r--r-- | assets/css/colors/base16-cupcake.css | 15 | ||||
-rw-r--r-- | assets/css/colors/base16-default.css | 15 | ||||
-rw-r--r-- | assets/css/colors/base16-eighties.css | 15 | ||||
-rw-r--r-- | assets/css/colors/base16-mocha.css | 15 | ||||
-rw-r--r-- | assets/css/colors/base16-ocean.css | 15 | ||||
-rw-r--r-- | assets/css/colors/spacegray.css | 15 | ||||
-rw-r--r-- | wiki/features/appearance.md | 2 |
7 files changed, 76 insertions, 16 deletions
diff --git a/assets/css/colors/base16-cupcake.css b/assets/css/colors/base16-cupcake.css new file mode 100644 index 0000000..4a7a93a --- /dev/null +++ b/assets/css/colors/base16-cupcake.css @@ -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*/ +}
\ No newline at end of file diff --git a/assets/css/colors/base16-default.css b/assets/css/colors/base16-default.css new file mode 100644 index 0000000..ca27426 --- /dev/null +++ b/assets/css/colors/base16-default.css @@ -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*/ +}
\ No newline at end of file diff --git a/assets/css/colors/base16-eighties.css b/assets/css/colors/base16-eighties.css new file mode 100644 index 0000000..c9461d4 --- /dev/null +++ b/assets/css/colors/base16-eighties.css @@ -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*/ +}
\ No newline at end of file diff --git a/assets/css/colors/base16-mocha.css b/assets/css/colors/base16-mocha.css new file mode 100644 index 0000000..f05ac86 --- /dev/null +++ b/assets/css/colors/base16-mocha.css @@ -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*/ +}
\ No newline at end of file diff --git a/assets/css/colors/base16-ocean.css b/assets/css/colors/base16-ocean.css new file mode 100644 index 0000000..c5bdd5a --- /dev/null +++ b/assets/css/colors/base16-ocean.css @@ -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*/ +}
\ No newline at end of file diff --git a/assets/css/colors/spacegray.css b/assets/css/colors/spacegray.css deleted file mode 100644 index 501cb29..0000000 --- a/assets/css/colors/spacegray.css +++ /dev/null @@ -1,15 +0,0 @@ -:root { - --content-primary: rgb(24, 24, 24); - --content-secondary: rgb(88, 88, 88); - --background: rgb(248, 248, 248); - --code-background: rgb(232, 232, 232); - --code-border: rgb(216, 216, 216); -} - -.dark { - --content-primary: rgb(248, 248, 248); - --content-secondary: rgb(184, 184, 184); - --background: rgb(24, 24, 24); - --code-background: rgb(40, 40, 40); - --code-border: rgb(56, 56, 56); -}
\ No newline at end of file diff --git a/wiki/features/appearance.md b/wiki/features/appearance.md index 2199ae4..ef8deb5 100644 --- a/wiki/features/appearance.md +++ b/wiki/features/appearance.md @@ -41,7 +41,7 @@ This is the complete list of palettes available: - catpuccin; - gruvebox; - eink; -- spacegray. +- base16-default. More are to come. |