-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathsharedStyles.js
119 lines (110 loc) · 2.88 KB
/
sharedStyles.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import { EditorView } from '@codemirror/view';
import { remSize } from '../../../theme';
export const createLintStyleOverrides = (colors) =>
EditorView.baseTheme({
'.cm-gutter-lint': {
'& .cm-gutterElement': {
padding: 0,
'& .cm-lint-marker': {
width: '100%',
height: '100%',
opacity: 0.2
},
'& .cm-lint-marker-error': {
content: 'none',
backgroundColor: colors.lintError || 'rgb(255, 95, 82)'
},
'& .cm-lint-marker-warning': {
content: 'none',
backgroundColor: colors.lintWarning || 'rgb(255, 190, 5)'
}
}
}
});
export const createFoldStyleOverrides = (colors) =>
EditorView.baseTheme({
'.cm-foldGutter .cm-gutterElement': {
cursor: 'pointer',
textAlign: 'right',
color: colors.foldGutter || 'rgba(0,0,0,0.2)'
}
});
export const createBaseP5Theme = () =>
EditorView.baseTheme({
'.cm-scroller': {
fontFamily: 'Inconsolata, monospace'
},
'.cm-gutters': {
width: remSize(48)
},
'.cm-gutter': {
width: '100%',
position: 'absolute'
}
});
export const createGutterStyles = (colors) => ({
'.cm-gutters': {
backgroundColor: colors.gutterBackground,
width: '2.7em'
},
'.cm-lineNumbers': {
paddingRight: '10px',
'& .cm-gutterElement': {
width: '32px',
left: '-3px',
color: colors.lineNumber
}
}
});
export const createLineStyles = () => ({
'.cm-line': {
wordWrap: 'break-word',
whiteSpace: 'pre-wrap',
wordBreak: 'normal'
},
'.cm-content': {
maxWidth: 'calc(100% - 2.7em)'
}
});
export const createSelectionStyles = (colors) => ({
'.CodeMirror-selected': {
backgroundColor: colors.selection
},
'.cm-activeLine': {
backgroundColor: colors.activeLine
},
'.cm-activeLineGutter': {
backgroundColor: colors.activeLine,
borderRight: `1px solid ${colors.activeLineGutter}`
}
});
export const createCursorAndBracketStyles = (colors) => ({
'.CodeMirror-cursor': {
borderLeft: `1px solid ${colors.cursor}`
},
'.cm-matchingBracket': {
outline: `1px solid ${colors.bracket}`,
outlineOffset: '1px',
color: `${colors.text} !important`
}
});
export const createErrorAndSearchStyles = (colors) => ({
'.cm-error': {
color: colors.error
},
'.cm-searchMatch': {
backgroundColor: colors.searchMatch
}
});
export const createHighlightClasses = (colors) => ({
'.cm-qualifier': { color: colors.qualifier },
'.cm-tag': { color: colors.tag },
'.cm-builtin': { color: colors.builtin },
'.cm-attribute': { color: colors.attribute },
'.cm-p5-function': { color: colors.function, fontWeight: 'bold' },
'.cm-p5-variable': { color: colors.variable, fontWeight: 'bold' },
'.cm-foldPlaceholder': {
backgroundColor: colors.foldPlaceholderBackground,
color: colors.foldPlaceholderColor
}
});