diff --git a/stylesheets/_global.scss b/stylesheets/_global.scss index d29a2d2dd..15f8b2bf8 100644 --- a/stylesheets/_global.scss +++ b/stylesheets/_global.scss @@ -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 { diff --git a/stylesheets/components/Modal.scss b/stylesheets/components/Modal.scss index e5ab57989..80ffc19d8 100644 --- a/stylesheets/components/Modal.scss +++ b/stylesheets/components/Modal.scss @@ -19,7 +19,7 @@ } @include dark-theme() { - background: $color-gray-95; + background: $color-gray-80; color: $color-gray-05; } diff --git a/stylesheets/components/ProfileEditor.scss b/stylesheets/components/ProfileEditor.scss index c3df01b48..ca6008de0 100644 --- a/stylesheets/components/ProfileEditor.scss +++ b/stylesheets/components/ProfileEditor.scss @@ -96,6 +96,7 @@ } a { + font-weight: 600; text-decoration: none; } diff --git a/stylesheets/components/SafetyNumberChangeDialog.scss b/stylesheets/components/SafetyNumberChangeDialog.scss index dfe5c9292..022379d3f 100644 --- a/stylesheets/components/SafetyNumberChangeDialog.scss +++ b/stylesheets/components/SafetyNumberChangeDialog.scss @@ -71,7 +71,7 @@ } @include dark-theme { - color: $color-ultramarine-light; + color: $color-gray-05; } } }