Skip to content

Commit 224e778

Browse files
authored
Merge pull request #537 from swagger-api/editor
feat(editor): apply theme to hover and minimap background
2 parents 87f8387 + 928cc72 commit 224e778

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

experiments/generic-editor/src/utils/utils-monaco-theme-dark.js

+3
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ export const themes = {
117117
'editor.foreground': '#abb2bf',
118118
'editorLineNumber.foreground': '#636D83',
119119
'editorLineNumber.activeForeground': '#ABB2BF',
120+
'editorHoverWidget.background': '#282c34',
121+
'editorHoverWidget.border': '#636D83',
122+
'minimap.background': '#282c34',
120123
},
121124
},
122125
};

experiments/generic-editor/src/utils/utils-monaco-theme-light.js

+3
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ export const themes = {
117117
'editor.foreground': '#383a42',
118118
'editorLineNumber.foreground': '#9D9D9F',
119119
'editorLineNumber.activeForeground': '#383A42',
120+
'editorHoverWidget.background': '#fdf6e3',
121+
'editorHoverWidget.border': '#9D9D9F',
122+
'minimap.background': '#fdf6e3',
120123
},
121124
},
122125
};

0 commit comments

Comments
 (0)