Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 179131dbccf8711c5b70f7f684c0537fcbec7cd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*******************************************************************************
 * Copyright (c) 2014 Andrea Guarinoni 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:
 *     Andrea Guarinoni - initial API and implementation
 *******************************************************************************/

/* ############################## Debug preferences ############################## */

IEclipsePreferences#org-eclipse-debug-ui {
	preferences:
		'org.eclipse.debug.ui.MemoryHistoryKnownColor=235,235,235'
		'org.eclipse.debug.ui.MemoryHistoryUnknownColor=170,175,185'
		'org.eclipse.debug.ui.PREF_CHANGED_VALUE_BACKGROUND=150,80,115'
		'org.eclipse.debug.ui.changedDebugElement=255,128,128'
		'org.eclipse.debug.ui.consoleBackground=53,53,53'
		'org.eclipse.debug.ui.errorColor=225,30,70'
		'org.eclipse.debug.ui.inColor=140,175,210'
		'org.eclipse.debug.ui.outColor=235,235,235'
}

#DebugBreadcrumbComposite,
#DebugBreadcrumbItemComposite,
#DebugBreadcrumbItemDetailComposite,
#DebugBreadcrumbItemDetailTextComposite,
#DebugBreadcrumbItemDetailImageComposite,
#DebugBreadcrumbItemDetailTextLabel,
#DebugBreadcrumbItemDetailImageLabel,
#DebugBreadcrumbItemDropDownToolBar
{
    /*
     * Bug 465666
     *
     * Note: as we can't change the arrow to black, we configure
     * the background with the lighter color used for the background
     * of toolbars and make the foreground color brighter too.
     */
    background-color:#515658;
    color: white;
}

Back to the top