Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ export function useWorkflowsMonacoTheme() {
// Transparent backgrounds, they are set by the styles of the editor container behind.
'editor.background': '#00000000',
'editor.selectionBackground': chroma(transparentize(euiTheme.colors.primary, 0.1)).hex(),
'editor.wordHighlightTextBackground': chroma(
transparentize(euiTheme.colors.primary, 0.1)
).hex(),
'editor.wordHighlightBackground': chroma(
transparentize(euiTheme.colors.primary, 0.1)
).hex(),
'editor.wordHighlightStrongBackground': chroma(
transparentize(euiTheme.colors.primary, 0.1)
).hex(),
'editorGutter.background': '#00000000',
'minimap.background': '#00000000',
'diffEditor.unchangedRegionBackground': '#00000000',
Expand Down
Loading