diff options
Diffstat (limited to 'youtube/static/dark_theme.css')
-rw-r--r-- | youtube/static/dark_theme.css | 58 |
1 files changed, 21 insertions, 37 deletions
diff --git a/youtube/static/dark_theme.css b/youtube/static/dark_theme.css index 7389aa5..38cdd63 100644 --- a/youtube/static/dark_theme.css +++ b/youtube/static/dark_theme.css @@ -1,38 +1,22 @@ -body{ - --interface-color: #333333; - --text-color: #cccccc; - --background-color: #000000; +:root { + --background: #121113; + --text: #FFFFFF; + --secondary-hover: #222222; + --secondary-focus: #121113; + --secondary-inverse: #FFFFFF; + --primary-background: #242424; + --secondary-background: #222222; + --thumb-background: #222222; + --link: #00B0FF; + --link-visited: #40C4FF; + --border-bg: #222222; + --border-bg-settings: #000000; + --border-bg-license: #000000; + --buttom: #121113; + --buttom-text: #FFFFFF; + --button-border: #222222; + --buttom-hover: #222222; + --search-text: #FFFFFF; + --time-background: #121113; + --time-text: #FFFFFF; } - -a:link { - color: #22aaff; -} - -a:visited { - color: #7755ff; -} - -a:not([href]){ - color: var(--text-color); -} - -.comment .permalink{ - color: #ffffff; -} - -.setting-item{ - background-color: #444444; -} - - -.muted{ - background-color: #111111; - color: gray; -} - -.muted a:link { - color: #10547f; -} - - - |