summaryrefslogtreecommitdiff
path: root/styles/themes
diff options
context:
space:
mode:
Diffstat (limited to 'styles/themes')
-rw-r--r--styles/themes/colors-base.css14
-rw-r--r--styles/themes/colors-dark.css13
2 files changed, 27 insertions, 0 deletions
diff --git a/styles/themes/colors-base.css b/styles/themes/colors-base.css
new file mode 100644
index 0000000..3dab58b
--- /dev/null
+++ b/styles/themes/colors-base.css
@@ -0,0 +1,14 @@
+* {
+ /* Main */
+ --main-bg: white;
+ --main-color: black;
+
+ /* Underline */
+ --divider-color: #bbb;
+
+ /* Links */
+ --link-color: #0084ff;
+ --link-color-hover: #3ea2ff;
+ --link-color-active:#0056a7;
+
+} \ No newline at end of file
diff --git a/styles/themes/colors-dark.css b/styles/themes/colors-dark.css
new file mode 100644
index 0000000..64a33d1
--- /dev/null
+++ b/styles/themes/colors-dark.css
@@ -0,0 +1,13 @@
+* {
+ /* Main */
+ --main-bg: #333;
+ --main-color: white;
+
+ /* Underline */
+ --divider-color: #555;
+
+ /* Links */
+ --link-color: #0084ff;
+ --link-color-hover: #3ea2ff;
+ --link-color-active:#0056a7;
+} \ No newline at end of file