Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Nahrain1 authored Jan 12, 2025
1 parent ad4b8b3 commit 1923b5c
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions custom-codemirror.css
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;
}

0 comments on commit 1923b5c

Please sign in to comment.