From ab988ad32ec7a6d9537fd1e6ade3b76936ad338a Mon Sep 17 00:00:00 2001 From: Deimos Date: Tue, 5 Mar 2019 21:55:30 -0700 Subject: [PATCH] Fix text colors in Atom One Dark theme The foreground color was accidentally set wrongly before (using $foreground itself, which wasn't set yet) so that it ended up as full white, which was too bright. These should be the right colors from the theme. --- tildes/scss/themes/_atom_one_dark.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tildes/scss/themes/_atom_one_dark.scss b/tildes/scss/themes/_atom_one_dark.scss index bd85fe3..aa911af 100644 --- a/tildes/scss/themes/_atom_one_dark.scss +++ b/tildes/scss/themes/_atom_one_dark.scss @@ -2,8 +2,8 @@ $background: hsl(220, 13%, 18%); $background-alt: #21242b; -$foreground-alt: hsl(220, 14%, 71%); -$foreground: lighten($foreground, 10%); +$foreground: hsl(220, 14%, 71%); +$foreground-alt: hsl(220, 9%, 55%); $cyan: hsl(187, 47%, 55%); $blue: hsl(207, 82%, 66%); @@ -36,4 +36,4 @@ $theme-atom-one-dark: ( body.theme-atom-one-dark { @include use-theme($theme-atom-one-dark); -} \ No newline at end of file +}