allow setting variable 2 and 3 in config (#988)

main
Michael Fix 5 years ago committed by GitHub
parent e7066acc16
commit bc649fa0aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -142,11 +142,15 @@ class Themes extends React.PureComponent {
:global(.cm-comment) { :global(.cm-comment) {
color: ${highlights.comment} !important; color: ${highlights.comment} !important;
} }
:global(.cm-variable), :global(.cm-variable) {
:global(.cm-variable-2),
:global(.cm-variable-3) {
color: ${highlights.variable} !important; color: ${highlights.variable} !important;
} }
:global(.cm-variable-2) {
color: ${highlights.variable2 || highlights.variable} !important;
}
:global(.cm-variable-3) {
color: ${highlights.variable3 || highlights.variable} !important;
}
:global(.cm-number) { :global(.cm-number) {
color: ${highlights.number} !important; color: ${highlights.number} !important;
} }

@ -152,7 +152,9 @@ export const THEMES = [
highlights: { highlights: {
background: '#282a36', background: '#282a36',
text: '#f8f8f2', text: '#f8f8f2',
variable: '#fff', variable: '#50fa7b',
variable2: 'white',
variable3: '#ffb86c',
attribute: '#50fa7b', attribute: '#50fa7b',
definition: '#50fa7b', definition: '#50fa7b',
keyword: '#ff79c6', keyword: '#ff79c6',

Loading…
Cancel
Save