diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-08-06 22:23:06 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-08-06 22:23:06 +0200 |
commit | 3456350c2c8cf4bc136eb822f1793ec92f0f2c79 (patch) | |
tree | 306116a86a26278fd031b05f834cdf61691304b2 /sass/src | |
parent | f43082f74e92cb98845efb19017846f4e3255f98 (diff) |
use proper text contrast for input labels
Materialize has _weird_ defaults
Closes #79
Diffstat (limited to 'sass/src')
-rw-r--r-- | sass/src/dark/_variables.scss | 2 | ||||
-rw-r--r-- | sass/src/light/_variables.scss | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sass/src/dark/_variables.scss b/sass/src/dark/_variables.scss index 7dcd006..04e3689 100644 --- a/sass/src/dark/_variables.scss +++ b/sass/src/dark/_variables.scss @@ -11,7 +11,7 @@ $secondary-color: color('cyan', 'darken-2'); $link-color: color('light-blue', 'darken-1'); $success-color: color('green', 'darken-2'); $error-color: color('red', 'darken-2'); -$input-border-color: $off-black; +$input-label-color: $off-black; $collection-border-color: color('grey', 'darken-3'); $collection-link-color: color('shades', 'white'); $collection-hover-bg-color: color('grey', 'darken-4'); diff --git a/sass/src/light/_variables.scss b/sass/src/light/_variables.scss index 4fdd9e8..6c5095b 100644 --- a/sass/src/light/_variables.scss +++ b/sass/src/light/_variables.scss @@ -5,3 +5,4 @@ $card-link-color: $link-color; $collection-link-color: color('shades', 'black'); $card-bg-color: color('blue-grey', 'lighten-5'); $inactive-color: color('grey', 'darken-2'); +$input-label-color: color('shades', 'black'); |