1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 578367: Add missing dark color definitions for autotools and makefiles

The colors chosen were based where possible on the colors of the CDT
main editor (org.eclipse.cdt.ui/css/e4-dark_cdt.css) for similar
syntax/semnatic elements.

Change-Id: Iea6ccb481b8d1b16aa2d6dda16e44b2512662fa0
This commit is contained in:
Jonah Graham 2022-01-25 14:48:25 -05:00
parent e9025adc2d
commit cb1228180c
4 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,28 @@
/*******************************************************************************
* Copyright (c) 2022 Kichwa Coders Canada Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
IEclipsePreferences#org-eclipse-cdt-autotools-core:org-eclipse-cdt-autotools-core {
preferences:
"org.eclipse.cdt.autotools.ui.autoconf.editor.comment=98,98,98"
"org.eclipse.cdt.autotools.ui.autoconf.editor.keyword=221,40,103"
"org.eclipse.cdt.autotools.ui.autoconf.editor.var_ref=121,171,255"
"org.eclipse.cdt.autotools.ui.autoconf.editor.var_set=255,191,38"
"org.eclipse.cdt.autotools.ui.autoconf.editor.acmacro=13,64,209"
"org.eclipse.cdt.autotools.ui.autoconf.editor.ammacro=13,209,64"
"org.eclipse.cdt.autotools.ui.autoconf.editor.codeseq=18,144,195"
"org.eclipse.cdt.autotools.ui.autoconf.editor.default=200,200,200"
"org.eclipse.cdt.autotools.ui.automake.editor.comment=98,98,98"
"org.eclipse.cdt.autotools.ui.automake.editor.keyword=221,40,103"
"org.eclipse.cdt.autotools.ui.automake.editor.macro_ref=121,171,255"
"org.eclipse.cdt.autotools.ui.automake.editor.macro_def=255,191,38"
"org.eclipse.cdt.autotools.ui.automake.editor.function=18,144,195"
"org.eclipse.cdt.autotools.ui.automake.editor.default=200,200,200"
}

View file

@ -656,4 +656,13 @@
prefer-non-shared="true">
</provider>
</extension>
<extension
point="org.eclipse.e4.ui.css.swt.theme">
<stylesheet
uri="css/e4-dark_autotools.css">
<themeid
refid="org.eclipse.e4.ui.css.theme.e4_dark">
</themeid>
</stylesheet>
</extension>
</plugin>

View file

@ -0,0 +1,21 @@
/*******************************************************************************
* Copyright (c) 2022 Kichwa Coders Canada Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
IEclipsePreferences#org-eclipse-cdt-make-ui:org-eclipse-cdt-make-ui {
preferences:
"org.eclipse.cdt.make.ui.editor.comment=98,98,98"
"org.eclipse.cdt.make.ui.editor.keyword=221,40,103"
"org.eclipse.cdt.make.ui.editor.macro_ref=121,171,255"
"org.eclipse.cdt.make.ui.editor.macro_def=255,191,38"
"org.eclipse.cdt.make.ui.editor.function=18,144,195"
"org.eclipse.cdt.make.ui.editor.default=200,200,200"
"org.eclipse.cdt.make.ui.editor.matching.brackets.color=170,170,170"
}

View file

@ -658,4 +658,13 @@
tabClass="org.eclipse.cdt.make.internal.ui.MakeBuildSettingsTab">
</provider>
</extension>
<extension
point="org.eclipse.e4.ui.css.swt.theme">
<stylesheet
uri="css/e4-dark_make.css">
<themeid
refid="org.eclipse.e4.ui.css.theme.e4_dark">
</themeid>
</stylesheet>
</extension>
</plugin>