forked from jvalue/made-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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; | ||
} |