mirror of
https://github.com/vale981/highlight-lisp
synced 2025-03-05 17:31:37 -05:00
porting over theme fixes from master
This commit is contained in:
parent
d100505608
commit
30dbe58a45
4 changed files with 29 additions and 17 deletions
|
@ -20,5 +20,8 @@ code.lisp .variable.constant {color: #a77;}
|
|||
code.lisp .nil {color: #de935f;}
|
||||
code.lisp .list {}
|
||||
|
||||
code.lisp .comment, code.lisp .comment *, code.lisp .comment .string {color: #777 !important;}
|
||||
code.lisp .string, code.lisp .string * {color: #b5bd88 !important;}
|
||||
code.lisp .comment,
|
||||
code.lisp .comment *,
|
||||
code.lisp .comment .string
|
||||
code.lisp .comment .string * {color: #777 !important;}
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
/**
|
||||
* Inspired by github's default code highlighting
|
||||
*/
|
||||
pre { white-space: pre; background-color: #f8f8f8; border: 1px solid #ccc; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px; border-radius: 3px; }
|
||||
pre code.lisp {white-space: pre; margin: 0; padding: 0; background: none; border: none; overflow-x: auto; font-size: 13px;}
|
||||
code.lisp {margin: 0 2px; padding: 0 5px; white-space: nowrap; font-family: Consolas, "Liberation Mono", Courier, monospace; background: #f8f8f8; border: 1px solid #eaeaea; border-radius: 3px;}
|
||||
|
@ -17,5 +20,8 @@ code.lisp .variable.constant {color: #229;}
|
|||
code.lisp .nil {color: #f00;}
|
||||
code.lisp .list {color: #222;}
|
||||
|
||||
code.lisp .comment, code.lisp .comment *, code.lisp .comment .string {color: #aaa !important;}
|
||||
code.lisp .string, code.lisp .string * {color: #d14 !important;}
|
||||
code.lisp .comment,
|
||||
code.lisp .comment *,
|
||||
code.lisp .comment .string
|
||||
code.lisp .comment .string * {color: #aaa !important;}
|
||||
|
|
|
@ -2,17 +2,17 @@ pre { white-space: pre; background-color: #f8f8f8; border: 1px solid #ccc; font-
|
|||
pre code {white-space: pre; margin: 0; padding: 0; background: none; border: none; overflow-x: auto; font-size: 13px;}
|
||||
code {margin: 0 2px; padding: 0 5px; white-space: nowrap; font-family: Consolas, "Liberation Mono", Courier, monospace; background: #f8f8f8; border: 1px solid #eaeaea; border-radius: 3px;}
|
||||
|
||||
pre .function.known {color: #a93;}
|
||||
pre .function.known.special {color: #2a3;}
|
||||
pre .keyword {color: #7aa;}
|
||||
pre .keyword.known {color: #4bb;}
|
||||
pre .symbol {color: #75a;}
|
||||
pre .lambda-list {color: #966;}
|
||||
pre .number {color: #800;}
|
||||
pre .variable.known {color: #c3c;}
|
||||
pre .variable.global {color: #939;}
|
||||
pre .variable.constant {color: #229;}
|
||||
pre .nil {color: #f00;}
|
||||
code.lisp .function.known {color: #a93;}
|
||||
code.lisp .function.known.special {color: #2a3;}
|
||||
code.lisp .keyword {color: #7aa;}
|
||||
code.lisp .keyword.known {color: #4bb;}
|
||||
code.lisp .symbol {color: #75a;}
|
||||
code.lisp .lambda-list {color: #966;}
|
||||
code.lisp .number {color: #800;}
|
||||
code.lisp .variable.known {color: #c3c;}
|
||||
code.lisp .variable.global {color: #939;}
|
||||
code.lisp .variable.constant {color: #229;}
|
||||
code.lisp .nil {color: #f00;}
|
||||
|
||||
pre .comment, pre .comment *, pre .comment .string {color: #aaa !important;}
|
||||
pre .string, pre .string * {color: #088 !important;}
|
||||
code.lisp .comment, code.lisp .comment *, code.lisp .comment .string {color: #aaa !important;}
|
||||
code.lisp .string, code.lisp .string * {color: #088 !important;}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*/
|
||||
pre { white-space: pre; background-color: #1d1f21; border: 0px solid #ccc; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px; border-radius: 3px; }
|
||||
pre code.lisp {white-space: pre; margin: 0; padding: 0; background: none; border: none; overflow-x: auto; font-size: 13px;}
|
||||
code.lisp {margin: 0 2px; padding: 0 5px; white-space: nowrap; font-family: Consolas, "Liberation Mono", Courier, monospace; background: #f8f8f8; border: 1px solid #eaeaea; border-radius: 3px;}
|
||||
code.lisp {margin: 0 2px; padding: 0 5px; white-space: nowrap; font-family: Consolas, "Liberation Mono", Courier, monospace; border: 1px solid #eaeaea; border-radius: 3px;}
|
||||
|
||||
code.lisp {color: #c5c8c6; color: #c9bf9f;}
|
||||
code.lisp .function {color: #d9c382;}
|
||||
|
@ -20,5 +20,8 @@ code.lisp .variable.constant {color: #96a646;}
|
|||
code.lisp .nil {color: #db919e; font-weight: bold;}
|
||||
code.lisp .list {}
|
||||
|
||||
code.lisp .comment, code.lisp .comment *, code.lisp .comment .string {color: #777 !important;}
|
||||
code.lisp .string, code.lisp .string * {color: #db7d8e !important;}
|
||||
code.lisp .comment,
|
||||
code.lisp .comment *,
|
||||
code.lisp .comment .string
|
||||
code.lisp .comment .string * {color: #777 !important;}
|
||||
|
|
Loading…
Add table
Reference in a new issue