Lighten modal background in dark mode

This commit is contained in:
Evan Hahn 2021-11-20 09:41:32 -06:00 committed by GitHub
parent e490d91cc4
commit 829604dbcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 3 deletions

View File

@ -160,7 +160,13 @@ button.grey {
}
a {
color: $color-ultramarine;
@include light-theme {
color: $color-ultramarine;
}
@include dark-theme {
color: $color-gray-05;
}
}
.group-member-list {

View File

@ -19,7 +19,7 @@
}
@include dark-theme() {
background: $color-gray-95;
background: $color-gray-80;
color: $color-gray-05;
}

View File

@ -96,6 +96,7 @@
}
a {
font-weight: 600;
text-decoration: none;
}

View File

@ -71,7 +71,7 @@
}
@include dark-theme {
color: $color-ultramarine-light;
color: $color-gray-05;
}
}
}