summaryrefslogtreecommitdiff
path: root/assets/css/colors
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/colors')
-rw-r--r--assets/css/colors/eink.css15
-rw-r--r--assets/css/colors/gruvebox.css15
2 files changed, 30 insertions, 0 deletions
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 @@
+:root {
+ --content-primary: rgb(0, 0, 0);
+ --content-secondary: rgb(0, 0, 0);
+ --background: rgb(255, 255, 255);
+ --code-background: rgb(255, 255, 255);
+ --code-border: rgb(0, 0, 0);
+}
+
+.dark {
+ --content-primary: rgb(255, 255, 255);
+ --content-secondary: rgb(255, 255, 255);
+ --background: rgb(0, 0, 0);
+ --code-background: rgb(0, 0, 0);
+ --code-border: rgb(255, 255, 255);
+} \ 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 @@
+:root {
+ --content-primary: rgb(60, 56, 54);
+ --content-secondary: rgb(148, 133, 112);
+ --background: rgb(251, 241, 199);
+ --code-background: rgb(241, 231, 189);
+ --code-border: rgb(178, 163, 142);
+}
+
+.dark {
+ --content-primary: rgb(235, 219, 178);
+ --content-secondary: rgb(132, 122, 114);
+ --background: rgb(40, 40, 40);
+ --code-background: rgb(50, 50, 50);
+ --code-border: rgb(112, 102, 94);
+} \ No newline at end of file