Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Becker2020-02-06 15:24:12 +0000
committerMatthias Becker2020-02-14 09:43:02 +0000
commit9aa232a94460f4a5cbd458a1590dec131b9307d9 (patch)
tree41224423ca6f3d77e88137d95a813f81142d5091
parent83631414d312d7ad36d6696048528570eef6c7ca (diff)
downloadeclipse.platform.ua-9aa232a94460f4a5cbd458a1590dec131b9307d9.tar.gz
eclipse.platform.ua-9aa232a94460f4a5cbd458a1590dec131b9307d9.tar.xz
eclipse.platform.ua-9aa232a94460f4a5cbd458a1590dec131b9307d9.zip
Bug 559611: Welcome page not respecting dark theme
Adapt solstice theme for dark theme Change-Id: Ia3a04a6fdf97255ac8e9c3398c1585e231b1997d
-rw-r--r--org.eclipse.ui.intro.universal/themes/solstice/html/shared.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/org.eclipse.ui.intro.universal/themes/solstice/html/shared.css b/org.eclipse.ui.intro.universal/themes/solstice/html/shared.css
index 05ce230e9..3cb0e5059 100644
--- a/org.eclipse.ui.intro.universal/themes/solstice/html/shared.css
+++ b/org.eclipse.ui.intro.universal/themes/solstice/html/shared.css
@@ -491,3 +491,36 @@ iframe {
width: 98%;
padding-left: 2%;
}
+
+
+@media (prefers-color-scheme: dark) {
+ .page {
+ background-color:#3d3d3d;
+ }
+
+ body .importance-low {
+ background-color:#3d3d3d;
+ }
+
+ H1, H2, H3, H4, p, a {
+ color: #f0f0f0;
+ }
+
+ H4 .div-label {
+ color: #f0f0f0;
+ }
+
+ .topicList {
+ color: #69c;
+ }
+
+ .rss-feed-link a {
+ color: #69c;
+ }
+
+ .section-title-link .section-title,
+ .section-title-link:focus .section-title {
+ color: #69c;
+ }
+
+} \ No newline at end of file

Back to the top