feat: init base theme for codemirror
This commit is contained in:
22
packages/hoppscotch-app/helpers/editor/themes/baseTheme.ts
Normal file
22
packages/hoppscotch-app/helpers/editor/themes/baseTheme.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { EditorView } from "@codemirror/view"
|
||||
|
||||
const baseTheme = EditorView.theme({
|
||||
"&": {
|
||||
fontSize: "var(--body-font-size)",
|
||||
},
|
||||
".cm-content": {
|
||||
fontFamily: "var(--font-mono)",
|
||||
backgroundColor: "var(--primary-color)",
|
||||
},
|
||||
".cm-gutters": {
|
||||
fontFamily: "var(--font-mono)",
|
||||
backgroundColor: "var(--primary-color)",
|
||||
borderColor: "var(--divider-light-color)",
|
||||
},
|
||||
".cm-lineNumbers": {
|
||||
minWidth: "3em",
|
||||
color: "var(--secondary-light-color)",
|
||||
},
|
||||
})
|
||||
|
||||
export default baseTheme
|
||||
Reference in New Issue
Block a user