diff options
author | Marvin Borner | 2024-08-01 00:56:43 +0200 |
---|---|---|
committer | Marvin Borner | 2024-08-01 02:04:17 +0200 |
commit | c3c381a09f205051ab407beacc86ec75b3207b27 (patch) | |
tree | 72d8509c028b2ed91e045e3be9324da40f6ab0af /docs/code.css | |
parent | 34d940048af27ca42b85a8a63d2e48fbefd4e63d (diff) |
Much more intelligence
Diffstat (limited to 'docs/code.css')
-rw-r--r-- | docs/code.css | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/docs/code.css b/docs/code.css index d96484b..7ce3fc4 100644 --- a/docs/code.css +++ b/docs/code.css @@ -2,11 +2,11 @@ code, pre { tab-size: 4; } -.com { +.pp { color: #ff64bd; } -.def { +.definition { color: #13dbee; } @@ -18,11 +18,11 @@ code, pre { color: #ffa120; } -.left-abs, .right-abs { +.abstraction { color: #6b82ff; } -.left-app, .right-app { +.application { color: #ff8750; } @@ -30,11 +30,19 @@ code, pre { color: #ff5050; } -.number { +.number, .float, .complex { color: #b1ee13; } -/* lol */ -.string, .string * { - color: #bb73f0 !important; +.string, .char { + color: #bb73f0; +} + +.code-highlight { + filter: saturate(5) brightness(3); + -webkit-text-stroke-width: 0.1ex; +} + +.code-clickable { + cursor: pointer; } |