diff options
author | Moonchild <moonchild@palemoon.org> | 2021-07-01 17:39:43 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-07-01 17:48:58 +0000 |
commit | 72d0b867092463bd70ae04c302b8e387d2414e75 (patch) | |
tree | 0e62016b0ecd8102c391c3e2871a624f38fd0acc /toolkit | |
parent | 2215d8467e260453efe6abcbc66218e367d0d2c3 (diff) | |
download | uxp-72d0b867092463bd70ae04c302b8e387d2414e75.tar.gz |
[Toolkit] Update logopage styling.
Part of the UX refresh Pale Moon effort. This uses the new -moz-dark-theme media
query to make the logopage dark if the UI is dark, without explicitly relying on
(often not sane) system color values.
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/content/logopage.xhtml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/toolkit/content/logopage.xhtml b/toolkit/content/logopage.xhtml index bcf1da0f00..614bb1a703 100644 --- a/toolkit/content/logopage.xhtml +++ b/toolkit/content/logopage.xhtml @@ -13,8 +13,8 @@ <title></title> <style type="text/css"> body { - background: Menu; - color: MenuText; + background: rgb(229,229,229); + color: black; } img { @@ -27,6 +27,13 @@ left: 0; opacity: 0.2; } + + @media(-moz-dark-theme) { + body { + background: #2E3B41; + color: #eee; + } + } </style> </head> |