You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'editor.inactiveSelectionBackground': fadedTwiceInfoColor,// Color of the selection in an inactive editor.
612
+
'editor.lineHighlightBorder': fadedTwiceForegroundColor,// Background color for the border around the line at the cursor position.
613
+
'editor.selectionBackground': fadedInfoColor,// Color of the editor selection.
614
+
615
+
'editorCursor.foreground': fadedForegroundColor,//Color of the editor cursor.
616
+
'editorError.foreground': dangerColor,// Foreground color of error squigglies in the editor.
617
+
618
+
'editorLineNumber.foreground': fadedForegroundColor,// Color of editor line numbers.
619
+
'editorLink.activeForeground': infoColor,// Color of active links. Such as when you press ctrl when hovering over a link
620
+
621
+
'editorWidget.background': contrastBackgroundColor,// Background color of editor widgets, such as find/replace.
622
+
'editorWidget.border': borderColor,// Border color of editor widgets. The color is only used if the widget chooses to have a border and if the color is not overridden by a widget.
623
+
'editorWarning.foreground': warningColor,// Foreground color of warning squigglies in the editor.
624
+
625
+
focusBorder: infoColor,// Overall border color for focused elements. This color is only used if not overridden by a component.
'list.focusBackground': fadedInfoColor,// List/Tree background color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.
632
+
'list.focusForeground': foregroundColor,// List/Tree foreground color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.
633
+
'list.activeSelectionBackground': fadedInfoColor,// List/Tree background color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.
634
+
'list.activeSelectionForeground': foregroundColor,// List/Tree foreground color for the selected item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not.
635
+
'list.inactiveSelectionBackground': backgroundColor,// List/Tree background color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.
636
+
'list.inactiveSelectionForeground': foregroundColor,// List/Tree foreground color for the selected item when the list/tree is inactive. An active list/tree has keyboard focus, an inactive does not.
637
+
'list.hoverBackground': backgroundColor,// List/Tree background when hovering over items using the mouse.
638
+
'list.hoverForeground': foregroundColor,// List/Tree foreground when hovering over items using the mouse.
639
+
'list.dropBackground': backgroundColor,// List/Tree drag and drop background when moving items around using the mouse.
640
+
'list.highlightForeground': foregroundColor,// List/Tree foreground color of the match highlights when searching inside the list/tree.
641
+
642
+
'textLink.activeForeground': infoColor,// Foreground color for active links in text. // Not sure where this is used.
643
+
'textLink.foreground': infoColor,// Foreground color for links in text (such as "Follow Link")
644
+
645
+
'widget.shadow': shadowColor,// Shadow color of widgets such as find/replace inside the editor.
646
+
},
647
+
});
648
+
monaco.editor.setTheme(theme);
649
+
}
650
+
456
651
editor=monaco.editor.create(divEl.current,{
457
652
// These are variable: customizable by user or dependent on props
0 commit comments