summaryrefslogtreecommitdiffstats
path: root/assets/css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css')
-rw-r--r--assets/css/darktheme.css26
-rw-r--r--assets/css/default.css (renamed from assets/css/custom.css)12
-rw-r--r--assets/css/lighttheme.css9
3 files changed, 36 insertions, 11 deletions
diff --git a/assets/css/darktheme.css b/assets/css/darktheme.css
new file mode 100644
index 00000000..19cdfd45
--- /dev/null
+++ b/assets/css/darktheme.css
@@ -0,0 +1,26 @@
+a:hover,
+a:active {
+ color: #46aaf6;
+}
+
+a {
+ color: #f0f0f0;
+ text-decoration: none;
+}
+
+body {
+ background-color: #101010;
+ color: #f0f0f0;
+}
+
+.pure-form legend {
+ color: #f0f0f0;
+}
+
+.pure-menu-heading {
+ color: #f0f0f0;
+}
+
+.pure-form > fieldset > input {
+ color: #101010;
+}
diff --git a/assets/css/custom.css b/assets/css/default.css
index abd4e66e..850ebd47 100644
--- a/assets/css/custom.css
+++ b/assets/css/default.css
@@ -1,13 +1,3 @@
-a {
- color: #333;
- text-decoration: none;
-}
-
-a:hover,
-a:active {
- color: #167ac6;
-}
-
.h-box {
padding-left: 1em;
padding-right: 1em;
@@ -16,4 +6,4 @@ a:active {
.v-box {
padding-top: 1em;
padding-bottom: 1em;
-} \ No newline at end of file
+}
diff --git a/assets/css/lighttheme.css b/assets/css/lighttheme.css
new file mode 100644
index 00000000..34bb9fc1
--- /dev/null
+++ b/assets/css/lighttheme.css
@@ -0,0 +1,9 @@
+a:hover,
+a:active {
+ color: #167ac6;
+}
+
+a {
+ color: #303030;
+ text-decoration: none;
+}