diff options
author | Jesús <heckyel@hyperbola.info> | 2021-01-11 19:43:41 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-01-11 19:43:41 -0500 |
commit | 58eea1e0f2ac7ccd38edbad52eab3946d6f59aab (patch) | |
tree | 3d8f9f90268d39445bc21dc0bbfcd4821dd4dfd1 /youtube | |
parent | 3868295b057c06d02783bb730260e37b937c1625 (diff) | |
download | yt-local-58eea1e0f2ac7ccd38edbad52eab3946d6f59aab.tar.lz yt-local-58eea1e0f2ac7ccd38edbad52eab3946d6f59aab.tar.xz yt-local-58eea1e0f2ac7ccd38edbad52eab3946d6f59aab.zip |
Light theme: improve colors
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/static/light_theme.css | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/youtube/static/light_theme.css b/youtube/static/light_theme.css index 97db568..1a78fc5 100644 --- a/youtube/static/light_theme.css +++ b/youtube/static/light_theme.css @@ -1,18 +1,18 @@ :root { - --background: #FAFAFA; - --text: #415462; - --secondary-hover: #415462; - --secondary-focus: rgba(115, 130, 140, 0.125); - --secondary-inverse: #FFF; - --primary-background:#CCC; - --secondary-background: #eeeeee; - --link: #22aaff; - --link-visited: #7755ff; - --buttom: #dcdcdb; - --buttom-text: #415462; - --button-border: #91918c; - --buttom-hover: #BBB; - --search-text: #415462; - --time-background: #000; - --time-text: #FFF; + --background: #FFFFFF; + --text: #212121; + --secondary-hover: #212121; + --secondary-focus: #E4E4E4; + --secondary-inverse: #FFFFFF; + --primary-background: #CCCCCC; + --secondary-background: #F5F5F5; + --link: #212121; + --link-visited: #606060; + --buttom: #DCDCDC; + --buttom-text: #212121; + --button-border: #91918c; + --buttom-hover: #BBBBBB; + --search-text: #212121; + --time-background: #212121; + --time-text: #FFFFFF; } |