Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Becker2020-02-14 11:31:08 +0000
committerMatthias Becker2020-02-14 11:31:08 +0000
commit435f05cf47a067eea3d20be430be646dcad9a07e (patch)
tree6f17ff244cf9145b9cdf41550c35de43b76ff804
parent5a1a1ffcd1ee079daff295c47e8a4af1db1d4316 (diff)
downloadeclipse.platform.ua-435f05cf47a067eea3d20be430be646dcad9a07e.tar.gz
eclipse.platform.ua-435f05cf47a067eea3d20be430be646dcad9a07e.tar.xz
eclipse.platform.ua-435f05cf47a067eea3d20be430be646dcad9a07e.zip
Bug 559611: Welcome page not respecting dark themeI20200215-0600I20200214-1800
Adapt circles theme for dark theme Change-Id: Ide027ddd85eb47409f44c71b2c7fe5d081ca55da
-rw-r--r--org.eclipse.ui.intro.universal/themes/circles/html/shared.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/org.eclipse.ui.intro.universal/themes/circles/html/shared.css b/org.eclipse.ui.intro.universal/themes/circles/html/shared.css
index 5c4b891c3..975fd6760 100644
--- a/org.eclipse.ui.intro.universal/themes/circles/html/shared.css
+++ b/org.eclipse.ui.intro.universal/themes/circles/html/shared.css
@@ -647,4 +647,36 @@ iframe {
#page-content > 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, .content-link .link-label,
+ .section-title-link:focus .section-title {
+ color: #69c;
+ }
+
} \ No newline at end of file

Back to the top