diff options
Diffstat (limited to 'theme/stylesheets')
-rw-r--r-- | theme/stylesheets/book/highlight.less | 24 | ||||
-rwxr-xr-x | theme/stylesheets/book/markdown.less | 3 |
2 files changed, 12 insertions, 15 deletions
diff --git a/theme/stylesheets/book/highlight.less b/theme/stylesheets/book/highlight.less index 004e7a5..ae9d1f8 100644 --- a/theme/stylesheets/book/highlight.less +++ b/theme/stylesheets/book/highlight.less @@ -1,8 +1,9 @@ -/* http://jmblog.github.io/color-themes-for-highlightjs */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ /* Tomorrow Comment */ -.hljs-comment { - color: hsl(207, 35%, 35%); +.hljs-comment, +.hljs-title { + color: #8e908c; } /* Tomorrow Red */ @@ -27,9 +28,9 @@ .hljs-pragma, .hljs-built_in, .hljs-literal, -.hljs-constant, -.hljs-function .hljs-title { - color: hsl(50, 100%, 60%); +.hljs-params, +.hljs-constant { + color: #f5871f; } /* Tomorrow Yellow */ @@ -45,7 +46,7 @@ .hljs-header, .ruby .hljs-symbol, .xml .hljs-cdata { - color: hsl(0, 100%, 70%); + color: #718c00; } /* Tomorrow Aqua */ @@ -54,7 +55,7 @@ } /* Tomorrow Blue */ -.hljs-function .keyword, +.hljs-function, .python .hljs-decorator, .python .hljs-title, .ruby .hljs-function .hljs-title, @@ -62,13 +63,13 @@ .perl .hljs-sub, .javascript .hljs-title, .coffeescript .hljs-title { - color: hsl(207, 70%, 60%); + color: #4271ae; } /* Tomorrow Purple */ .hljs-keyword, .javascript .hljs-function { - color: hsl(207, 95%, 70%); + color: #8959a8; } .hljs { @@ -76,7 +77,6 @@ background: white; color: #4d4d4c; padding: 0.5em; - font-family: "Anonymous Pro", "Inconsolata", "Monaco", monospace; } .coffeescript .javascript, @@ -87,4 +87,4 @@ .xml .css, .xml .hljs-cdata { opacity: 0.5; -} +}
\ No newline at end of file diff --git a/theme/stylesheets/book/markdown.less b/theme/stylesheets/book/markdown.less index 6232c5f..d5c2768 100755 --- a/theme/stylesheets/book/markdown.less +++ b/theme/stylesheets/book/markdown.less @@ -279,9 +279,6 @@ } pre { - color: hsl(204, 40%, 80%); - background-color: hsl(204, 30%, 10%); - border: 1px solid hsl(204, 30%, 10%); font-size: inherit; line-height: 1.5em; overflow: auto; |