From 38e830c47cb2725f6ad290bddcf89d8d484d7717 Mon Sep 17 00:00:00 2001 From: Madhumitha M V Date: Mon, 9 Dec 2024 13:41:41 +0530 Subject: [PATCH] [Dark Theme] Fix for bg color of bread crumb in editor As we changed the background color of editor to more darker shade, background of breadcrumbs were still using the older color code. This has been changed to same color code as editor's. --- org.eclipse.jdt.ui/css/e4-dark_jdt_syntaxhighlighting.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.eclipse.jdt.ui/css/e4-dark_jdt_syntaxhighlighting.css b/org.eclipse.jdt.ui/css/e4-dark_jdt_syntaxhighlighting.css index fbd57ccb2c5..4be30b95d94 100644 --- a/org.eclipse.jdt.ui/css/e4-dark_jdt_syntaxhighlighting.css +++ b/org.eclipse.jdt.ui/css/e4-dark_jdt_syntaxhighlighting.css @@ -136,6 +136,6 @@ FormatterPreferenceSectionComposite { * the background with the lighter color used for the background * of toolbars and make the foreground color brighter too. */ - background-color:#515658; + background-color:#1E1F22; color: white; }