forked from jvalue/made-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-codemirror.css
50 lines (42 loc) · 1.21 KB
/
custom-codemirror.css
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
/* Hintergrundfarbe und Standardtextfarbe */
.CodeMirror {
background-color: #000000; /* Schwarzer Hintergrund */
color: #FFFFFF; /* Weißer Standardtext */
font-family: 'Source Code Pro', monospace;
font-size: 14px;
}
/* Kommentarfarben */
.CodeMirror .cm-comment {
color: #808080; /* Grau für Kommentare */
font-style: italic;
}
/* Schlüsselwörter und Kontrollfluss */
.CodeMirror .cm-keyword {
color: #0098CF; /* Blau für Schlüsselwörter */
}
/* Funktionen */
.CodeMirror .cm-def {
color: #EC3479; /* Pink für Funktionsnamen */
}
/* Variablen und Parameter */
.CodeMirror .cm-variable,
.CodeMirror .cm-variable-2,
.CodeMirror .cm-parameter {
color: #FFFFFF; /* Weiß für Variablen und Parameter */
}
/* Zahlen */
.CodeMirror .cm-number {
color: #E43375; /* Rot für Zahlen */
}
/* Eingebaute Funktionen und Klassen */
.CodeMirror .cm-builtin {
color: #F5922F; /* Orange für eingebaute Funktionen */
}
/* Zeichenketten */
.CodeMirror .cm-string {
color: #00A37E; /* Grün für Zeichenketten */
}
/* Hintergrundfarbe für Notebook-Zellen (falls zutreffend) */
.CodeMirror .notebook-cell {
background-color: #1F1F1F;
}