Update theme.css

This commit is contained in:
Stefan Kebekus
2026-08-12 08:10:11 +02:00
parent 06a1b354db
commit 29cbe9f6f8
+31 -2
View File
@@ -74,9 +74,38 @@ blockquote > :last-child {
margin-bottom: 0;
}
/** TODO - make these themeable with variables ***/
/* Syntax-Farben für Lean-Code, angelehnt an das Light+-Thema von
VS Code (Standardansicht des Lean-Plugins). Versos Highlighter
klassifiziert jedes Token semantisch; hier bekommt jede Klasse
ihre Farbe. */
.hl.lean .keyword.token {
font-weight: 600 !important;
font-weight: 600;
color: #0000c0; /* theorem, by, fun, … */
}
.hl.lean .const.token {
color: #795e26; /* Konstanten: Lemmanamen, , Ideal, … */
}
.hl.lean .var.token {
color: #001080; /* gebundene Variablen */
}
.hl.lean .sort.token {
color: #267f99; /* Type, Prop */
}
.hl.lean .literal.token {
color: #098658; /* Zahl- und String-Literale */
}
.hl.lean .comment.token {
color: #007000; /* Kommentare — die Skript-Sätze */
font-style: italic;
}
.hl.lean .wildcard.token {
color: #708090; /* Unterstriche/Platzhalter */
}
figure {