From 2c0c1016fd573e235e7d01c1d0be416f4f292b84 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 27 Aug 2020 14:23:51 +1000 Subject: [PATCH] make green button (brand button) filled with black rather than white on light theme --- stylesheets/_session.scss | 2 +- stylesheets/themes.scss | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/stylesheets/_session.scss b/stylesheets/_session.scss index 0d56c6c64..879cb4550 100644 --- a/stylesheets/_session.scss +++ b/stylesheets/_session.scss @@ -122,7 +122,7 @@ textarea { &.green { @include themify($themes) { - background-color: themed('accent'); + background-color: themed('accentButton'); } } diff --git a/stylesheets/themes.scss b/stylesheets/themes.scss index afa936090..f6e13c324 100644 --- a/stylesheets/themes.scss +++ b/stylesheets/themes.scss @@ -3,6 +3,7 @@ $themes: ( light: ( accent: #00e97b, + accentButton: #000, destructive: #ff453a, cellBackground: #fcfcfc, modalBackground: #fcfcfc, @@ -52,6 +53,7 @@ $themes: ( ), dark: ( accent: #00f782, + accentButton: #00f782, destructive: #ff453a, cellBackground: #1b1b1b, modalBackground: #101011,