summaryrefslogtreecommitdiff
path: root/sass/src/common/index.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sass/src/common/index.scss')
-rw-r--r--sass/src/common/index.scss31
1 files changed, 31 insertions, 0 deletions
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;
+ }
+ }
+}