12345678910111213141516171819202122232425262728293031323334 |
- /* Syntax highlighting code, by David Thompson, borrowed
- from:
- https://git.dthompson.us/blog.git/blob_plain/refs/heads/haunt-migration:/css/dthompson.css
- David Thompson gives permission for this to be GPLv3+ and CC BY-SA 4.0
- Modified significantly since.
- */
- .syntax-special, .syntax-element {
- color: #8e6da6;
- font-weight: bold;
- }
- .syntax-symbol {
- color: #e0ceed;
- }
- .syntax-string {
- color: #95e454;
- }
- .syntax-keyword, .syntax-attribute {
- color: #e5786d;
- }
- .syntax-comment {
- color: #999;
- }
- .syntax-open, .syntax-close {
- color: #00768b;
- }
|