Commit 9a8ffadc authored by Mark Riedesel's avatar Mark Riedesel

Improve Monokai highlight style to match original

The current monokai style in highlightjs is not very true to the
original and lacks colors for certain syntactic items. This change's
goal is to bring the highlightjs monokai style in line with the original
design from http://www.monokai.nl/blog/2006/07/15/textmate-color-theme/
parent d7568727
...@@ -7,6 +7,7 @@ v 7.6.0 ...@@ -7,6 +7,7 @@ v 7.6.0
- Add optional Sidekiq MemoryKiller middleware (enabled via SIDEKIQ_MAX_RSS env variable) - Add optional Sidekiq MemoryKiller middleware (enabled via SIDEKIQ_MAX_RSS env variable)
- -
- -
- Monokai highlighting style now more faithful to original design (Mark Riedesel)
- Create project with repository in synchrony - Create project with repository in synchrony
- Added ability to create empty repo or import existing one if project does not have repository - Added ability to create empty repo or import existing one if project does not have repository
- -
......
...@@ -29,28 +29,30 @@ ...@@ -29,28 +29,30 @@
.hljs-tag, .hljs-tag,
.hljs-tag .hljs-title, .hljs-tag .hljs-title,
.hljs-keyword,
.hljs-literal,
.hljs-strong, .hljs-strong,
.hljs-change, .hljs-change,
.hljs-winutils, .hljs-winutils,
.hljs-flow, .hljs-flow,
.lisp .hljs-title, .lisp .hljs-title,
.clojure .hljs-built_in, .clojure .hljs-built_in,
.hljs-keyword,
.nginx .hljs-title, .nginx .hljs-title,
.tex .hljs-special { .tex .hljs-special {
color: #F92672; color: #F92672;
} }
.hljs { .hljs {
color: #DDD; color: #F8F8F2;
} }
.hljs .hljs-constant, .asciidoc .hljs-code,
.asciidoc .hljs-code { .markdown .hljs-code,
.hljs-literal,
.hljs-function .hljs-keyword {
color: #66D9EF; color: #66D9EF;
} }
.hljs-code, .hljs-code,
.hljs-class .hljs-title, .hljs-class .hljs-title,
.hljs-header { .hljs-header {
...@@ -62,18 +64,27 @@ ...@@ -62,18 +64,27 @@
.hljs-symbol, .hljs-symbol,
.hljs-symbol .hljs-string, .hljs-symbol .hljs-string,
.hljs-value, .hljs-value,
.hljs-constant,
.hljs-number,
.hljs-regexp { .hljs-regexp {
color: #BF79DB; color: #AE81FF;
}
.hljs-string {
color: #E6DB74;
}
.hljs-params {
color: #fd971f;
} }
.hljs-link_url, .hljs-link_url,
.hljs-tag .hljs-value, .hljs-tag .hljs-value,
.hljs-string,
.hljs-bullet, .hljs-bullet,
.hljs-subst, .hljs-subst,
.hljs-title, .hljs-title,
.hljs-emphasis, .hljs-emphasis,
.haskell .hljs-type, .hljs-type,
.hljs-preprocessor, .hljs-preprocessor,
.hljs-pragma, .hljs-pragma,
.ruby .hljs-class .hljs-parent, .ruby .hljs-class .hljs-parent,
...@@ -99,12 +110,12 @@ ...@@ -99,12 +110,12 @@
} }
.hljs-comment, .hljs-comment,
.java .hljs-annotation, .hljs-annotation,
.smartquote, .smartquote,
.hljs-blockquote, .hljs-blockquote,
.hljs-horizontal_rule, .hljs-horizontal_rule,
.python .hljs-decorator,
.hljs-template_comment, .hljs-template_comment,
.hljs-decorator,
.hljs-pi, .hljs-pi,
.hljs-doctype, .hljs-doctype,
.hljs-deletion, .hljs-deletion,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment