diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-18 08:31:13 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-18 08:31:13 +0200 |
commit | c3071d54eb1275e36067f8549a7a7ac2c6876de9 (patch) | |
tree | 4669ca1548f7887305cb3ea35aad6b677531000c /sass/src/common | |
parent | 3668c69d1fad5855fd9bcd190855a7f6c6ec2195 (diff) | |
parent | 2107c0bbaf9f4b7f66c09eb7d242790145456292 (diff) |
Merge branch 'marudor-darkMode'
Diffstat (limited to 'sass/src/common')
-rw-r--r-- | sass/src/common/_variables.scss | 0 | ||||
-rw-r--r-- | sass/src/common/index.scss | 31 |
2 files changed, 31 insertions, 0 deletions
diff --git a/sass/src/common/_variables.scss b/sass/src/common/_variables.scss new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/sass/src/common/_variables.scss diff --git a/sass/src/common/index.scss b/sass/src/common/index.scss new file mode 100644 index 0000000..f279240 --- /dev/null +++ b/sass/src/common/index.scss @@ -0,0 +1,31 @@ +$customColors: ( + 'caution': $error-color, + 'info': $info-color, + 'contrast': $off-black, + 'success': $success-color, +); + +@each $name, $color in $customColors { + .#{$name}-color { + background-color: $color; + } + .#{$name}-color-text { + color: $color; + } +} + +html { + background-color: $bg-color; +} + +a.unmarked { + color: $off-black; +} + +.pagination { + li { + a { + color: $off-black; + } + } +} |