From fc8f57281e30d88d95e355c76b80163d318a986f Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Sat, 6 Mar 2021 17:18:13 +0100 Subject: [PATCH] Use darker link color for light theme --- src/newsreader/scss/components/post/_post.scss | 2 +- src/newsreader/scss/partials/_colors.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/newsreader/scss/components/post/_post.scss b/src/newsreader/scss/components/post/_post.scss index dc5f829..64773eb 100644 --- a/src/newsreader/scss/components/post/_post.scss +++ b/src/newsreader/scss/components/post/_post.scss @@ -51,7 +51,7 @@ background-color: var(--lightest-accent-color) !important; & a { - color: $black; + color: var(--font-color); } } diff --git a/src/newsreader/scss/partials/_colors.scss b/src/newsreader/scss/partials/_colors.scss index ca20537..621fcfe 100644 --- a/src/newsreader/scss/partials/_colors.scss +++ b/src/newsreader/scss/partials/_colors.scss @@ -28,7 +28,7 @@ $checkbox-blue: rgba(34, 170, 253, 1); $background-color: rgba(255, 249, 176, 1); $font-color: rgba(83, 87, 91, 1); -$link-color: darken($azureish-white, 30%); +$link-color: rgba(45, 142, 202, 1); $read-color: darken($gainsboro, 10%); $confirm-button-font-color: rgba(255, 255, 255, 1);