Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2014-04-27 20:47:31 +0000
committerLars Vogel2014-04-27 20:52:10 +0000
commitbc7c5eaf84573cd45d325f0f62f2d5009d07e6da (patch)
tree38e56fe6f890de67995d4dfb72bfa8371642fbbb
parent043ed813c0fc10c0931e70182720ff4b9382ce6d (diff)
downloadeclipse.platform.ui-bc7c5eaf84573cd45d325f0f62f2d5009d07e6da.tar.gz
eclipse.platform.ui-bc7c5eaf84573cd45d325f0f62f2d5009d07e6da.tar.xz
eclipse.platform.ui-bc7c5eaf84573cd45d325f0f62f2d5009d07e6da.zip
Bug 433600 - [CSS] [Dark] Provide reasonable platform ui defaults forI20140427-2030
syntax color in the dark theme Change-Id: I36abcd09cad45f9d2108aa269b1f911d3fcdf76c Signed-off-by: Lars Vogel <Lars.Vogel@gmail.com>
-rw-r--r--bundles/org.eclipse.ui.themes/css/dark/e4-dark_preferencestyle.css67
-rw-r--r--bundles/org.eclipse.ui.themes/plugin.xml5
2 files changed, 72 insertions, 0 deletions
diff --git a/bundles/org.eclipse.ui.themes/css/dark/e4-dark_preferencestyle.css b/bundles/org.eclipse.ui.themes/css/dark/e4-dark_preferencestyle.css
new file mode 100644
index 00000000000..0ad897d0153
--- /dev/null
+++ b/bundles/org.eclipse.ui.themes/css/dark/e4-dark_preferencestyle.css
@@ -0,0 +1,67 @@
+/*******************************************************************************
+ * Copyright (c) 2014 Lars Vogel and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Lars Vogel <Lars.Vogel@gmail.com> - initial API and implementation
+ * Andreas Guarino - intial color schema definition
+ *******************************************************************************/
+
+/* ############################## Eclipse UI properties ############################## */
+
+
+IEclipsePreferences#org-eclipse-ui-editors {
+ preferences:
+ 'AbstractTextEditor.Color.SelectionForeground.SystemDefault=false'
+ 'AbstractTextEditor.Color.SelectionBackground.SystemDefault=false'
+ 'AbstractTextEditor.Color.Background.SystemDefault=false'
+ 'AbstractTextEditor.Color.Foreground.SystemDefault=false'
+ 'AbstractTextEditor.Color.Background=32,32,32'
+ 'AbstractTextEditor.Color.FindScope=30,120,155'
+ 'AbstractTextEditor.Color.Foreground=217,232,247'
+ 'AbstractTextEditor.Color.SelectionBackground=62,81,93'
+ 'AbstractTextEditor.Color.SelectionForeground=68,206,239'
+ 'asOccurencesIndicationColor=72,72,72'
+ 'breakpointIndicationColor=51,119,193'
+ 'currentIPColor=54,54,54'
+ 'currentLineColor=54,54,54'
+ 'deletionIndicationColor=134,60,67'
+ 'errorIndicationColor=179,26,64'
+ 'errorIndicationHighlighting=true'
+ 'filteredSearchResultIndicationColor=110,110,110'
+ 'hyperlinkColor=102,175,249'
+ 'hyperlinkColor.SystemDefault=false'
+ 'infoIndicationColor=86,194,170'
+ 'lineNumberColor=98,98,98'
+ 'linked.slave.color=66,156,255'
+ 'matchingTagIndicationColor=72,72,72'
+ 'occurrenceIndicationColor=72,72,72'
+ 'overrideIndicatorColor=78,120,117'
+ 'printMarginColor=98,98,98'
+ 'searchResultHighlighting=false'
+ 'searchResultIndication=true'
+ 'searchResultIndicationColor=94,94,94'
+ 'searchResultTextStyle=BOX'
+ 'secondaryIPColor=54,54,54'
+ 'spellingIndicationColor=253,170,211'
+ 'warningIndicationColor=156,114,3'
+ 'warningIndicationHighlighting=true'
+ 'writeOccurrenceIndicationColor=51,90,114'
+}
+
+IEclipsePreferences#org-eclipse-ui-workbench {
+ preferences:
+ 'ACTIVE_HYPERLINK_COLOR=138,201,242'
+ 'CONFLICTING_COLOR=240,15,66'
+ 'CONTENT_ASSIST_BACKGROUND_COLOR=52,57,61'
+ 'CONTENT_ASSIST_FOREGROUND_COLOR=238,238,238'
+ 'ERROR_COLOR=247,68,117'
+ 'HYPERLINK_COLOR=111,197,238'
+ 'INCOMING_COLOR=31,179,235'
+ 'OUTGOING_COLOR=238,238,238'
+ 'RESOLVED_COLOR=108,210,17'
+}
+
diff --git a/bundles/org.eclipse.ui.themes/plugin.xml b/bundles/org.eclipse.ui.themes/plugin.xml
index e8fabb9f0b7..5334aec91f0 100644
--- a/bundles/org.eclipse.ui.themes/plugin.xml
+++ b/bundles/org.eclipse.ui.themes/plugin.xml
@@ -92,6 +92,11 @@
themeId="org.eclipse.e4.ui.css.theme.e4_classic"
colorAndFontId="org.eclipse.ui.defaultTheme">
</themeAssociation>
+ <stylesheet
+ uri="css/dark/e4-dark_preferencestyle.css">
+ <themeid
+ refid="org.eclipse.e4.ui.css.theme.e4_dark"></themeid>
+ </stylesheet>
</extension>

Back to the top