diff options
Diffstat (limited to 'assets/css/colors')
| -rw-r--r-- | assets/css/colors/catpuccin.css | 15 | ||||
| -rw-r--r-- | assets/css/colors/default.css | 15 | ||||
| -rw-r--r-- | assets/css/colors/eink.css | 15 | ||||
| -rw-r--r-- | assets/css/colors/gruvebox.css | 15 | ||||
| -rw-r--r-- | assets/css/colors/primary.css | 15 |
5 files changed, 75 insertions, 0 deletions
diff --git a/assets/css/colors/catpuccin.css b/assets/css/colors/catpuccin.css new file mode 100644 index 0000000..2efb3cc --- /dev/null +++ b/assets/css/colors/catpuccin.css | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | :root { | ||
| 2 | --content-primary: rgb(76, 79, 105); | ||
| 3 | --content-secondary: rgb(108, 111, 133); | ||
| 4 | --background: rgb(239, 241, 245); | ||
| 5 | --code-background: rgb(230, 233, 239); | ||
| 6 | --code-border: rgb(188, 192, 204); | ||
| 7 | } | ||
| 8 | |||
| 9 | .dark { | ||
| 10 | --content-primary: rgb(198, 208, 245); | ||
| 11 | --content-secondary: rgb(165, 173, 206); | ||
| 12 | --background: rgb(48, 52, 70); | ||
| 13 | --code-background: rgb(41, 44, 60); | ||
| 14 | --code-border: rgb(81, 87, 109); | ||
| 15 | } \ No newline at end of file | ||
diff --git a/assets/css/colors/default.css b/assets/css/colors/default.css new file mode 100644 index 0000000..ad820ec --- /dev/null +++ b/assets/css/colors/default.css | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | :root { | ||
| 2 | --content-primary: rgb(36, 36, 36); | ||
| 3 | --content-secondary: rgb(117, 117, 117); | ||
| 4 | --background: rgb(255, 255, 255); | ||
| 5 | --code-background: rgb(249, 249, 249); | ||
| 6 | --code-border: rgb(229, 229, 229); | ||
| 7 | } | ||
| 8 | |||
| 9 | .dark { | ||
| 10 | --content-primary: rgb(218, 218, 218); | ||
| 11 | --content-secondary: rgb(140, 140, 140); | ||
| 12 | --background: rgb(20, 20, 20); | ||
| 13 | --code-background: rgb(30, 30, 30); | ||
| 14 | --code-border: rgb(50, 50, 50); | ||
| 15 | } \ No newline at end of file | ||
diff --git a/assets/css/colors/eink.css b/assets/css/colors/eink.css new file mode 100644 index 0000000..87a9507 --- /dev/null +++ b/assets/css/colors/eink.css | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | :root { | ||
| 2 | --content-primary: rgb(0, 0, 0); | ||
| 3 | --content-secondary: rgb(0, 0, 0); | ||
| 4 | --background: rgb(255, 255, 255); | ||
| 5 | --code-background: rgb(255, 255, 255); | ||
| 6 | --code-border: rgb(0, 0, 0); | ||
| 7 | } | ||
| 8 | |||
| 9 | .dark { | ||
| 10 | --content-primary: rgb(255, 255, 255); | ||
| 11 | --content-secondary: rgb(255, 255, 255); | ||
| 12 | --background: rgb(0, 0, 0); | ||
| 13 | --code-background: rgb(0, 0, 0); | ||
| 14 | --code-border: rgb(255, 255, 255); | ||
| 15 | } \ No newline at end of file | ||
diff --git a/assets/css/colors/gruvebox.css b/assets/css/colors/gruvebox.css new file mode 100644 index 0000000..c189e74 --- /dev/null +++ b/assets/css/colors/gruvebox.css | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | :root { | ||
| 2 | --content-primary: rgb(60, 56, 54); | ||
| 3 | --content-secondary: rgb(148, 133, 112); | ||
| 4 | --background: rgb(251, 241, 199); | ||
| 5 | --code-background: rgb(241, 231, 189); | ||
| 6 | --code-border: rgb(178, 163, 142); | ||
| 7 | } | ||
| 8 | |||
| 9 | .dark { | ||
| 10 | --content-primary: rgb(235, 219, 178); | ||
| 11 | --content-secondary: rgb(132, 122, 114); | ||
| 12 | --background: rgb(40, 40, 40); | ||
| 13 | --code-background: rgb(50, 50, 50); | ||
| 14 | --code-border: rgb(112, 102, 94); | ||
| 15 | } \ No newline at end of file | ||
diff --git a/assets/css/colors/primary.css b/assets/css/colors/primary.css new file mode 100644 index 0000000..073e9a2 --- /dev/null +++ b/assets/css/colors/primary.css | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | :root { | ||
| 2 | --content-primary: rgb(36, 36, 36); | ||
| 3 | --content-secondary: rgb(117, 117, 117); | ||
| 4 | --background: rgb(255, 255, 255); | ||
| 5 | --code-background: rgb(249, 249, 249); | ||
| 6 | --code-border: rgb(229, 229, 229); | ||
| 7 | } | ||
| 8 | |||
| 9 | .dark { | ||
| 10 | --content-primary: #D3C1A6; | ||
| 11 | --content-secondary: #7B6A51; | ||
| 12 | --background: #29241E; | ||
| 13 | --code-background: #241E1A; | ||
| 14 | --code-border: #26211C; | ||
| 15 | } | ||
