mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Port of Vscode fix for colors too close (#17146)
* default light colors list.focusHighlightForeground too close to list.activeSelectionBackground. Fixes #127597 * remove activeSelectionBackground from theme-carbon as it conflicts with vscode. * remove dark carbon background Co-authored-by: Martin Aeschlimann <martinae@microsoft.com>
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
|
||||
import { editorActiveIndentGuides, editorIndentGuides } from 'vs/editor/common/view/editorColorRegistry';
|
||||
import { IStandaloneThemeData } from 'vs/editor/standalone/common/standaloneThemeService';
|
||||
import { editorBackground, editorForeground, editorInactiveSelection, editorSelectionHighlight, listFocusHighlightForeground } from 'vs/platform/theme/common/colorRegistry';
|
||||
import { editorBackground, editorForeground, editorInactiveSelection, editorSelectionHighlight } from 'vs/platform/theme/common/colorRegistry';
|
||||
|
||||
/* -------------------------------- Begin vs theme -------------------------------- */
|
||||
export const vs: IStandaloneThemeData = {
|
||||
@@ -73,8 +73,7 @@ export const vs: IStandaloneThemeData = {
|
||||
[editorInactiveSelection]: '#E5EBF1',
|
||||
[editorIndentGuides]: '#D3D3D3',
|
||||
[editorActiveIndentGuides]: '#939393',
|
||||
[editorSelectionHighlight]: '#ADD6FF4D',
|
||||
[listFocusHighlightForeground]: '#9DDDFF'
|
||||
[editorSelectionHighlight]: '#ADD6FF4D'
|
||||
}
|
||||
};
|
||||
/* -------------------------------- End vs theme -------------------------------- */
|
||||
|
||||
Reference in New Issue
Block a user