discourse/app/assets/stylesheets/common/base/code_highlighting.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

129 lines
2.1 KiB
SCSS
Raw Normal View History

2014-03-26 01:13:38 +08:00
/*
github.com style (c) Vasily Polovnyov <vast@whiteants.net>
*/
.hljs {
display: block;
padding: 0.5em;
color: var(--primary-very-high);
2014-03-26 01:13:38 +08:00
}
.hljs-comment,
.hljs-doctag {
color: var(--hljs-comment);
2014-03-26 01:13:38 +08:00
font-style: italic;
}
.hljs-keyword,
.javascript .hljs-title,
.nginx .hljs-title,
.hljs-subst,
.hljs-request,
.hljs-status {
color: var(--primary-very-high);
2014-03-26 01:13:38 +08:00
font-weight: bold;
}
.hljs-number,
.ruby .hljs-constant {
color: var(--hljs-number);
2014-03-26 01:13:38 +08:00
}
.hljs-string,
.hljs-tag .hljs-string,
2014-03-26 01:13:38 +08:00
.tex .hljs-formula {
color: var(--hljs-string);
2014-03-26 01:13:38 +08:00
}
.hljs-title,
.hljs-name,
2014-03-26 01:13:38 +08:00
.coffeescript .hljs-params,
.scss .hljs-meta {
color: var(--hljs-string);
2014-03-26 01:13:38 +08:00
font-weight: bold;
}
.javascript .hljs-title,
.lisp .hljs-title,
.clojure .hljs-title,
.hljs-subst {
font-weight: normal;
}
.hljs-class .hljs-title,
.haskell .hljs-type,
.vhdl .hljs-literal,
.tex .hljs-command {
color: var(--hljs-literal);
2014-03-26 01:13:38 +08:00
font-weight: bold;
}
.hljs-tag,
.hljs-tag .hljs-title,
.django .hljs-tag .hljs-keyword {
color: var(--hljs-tag);
2014-03-26 01:13:38 +08:00
font-weight: normal;
}
.hljs-attribute,
.css .hljs-keyword,
2014-03-26 01:13:38 +08:00
.hljs-variable,
.lisp .hljs-body {
color: var(--hljs-attribute);
2014-03-26 01:13:38 +08:00
}
.hljs-regexp {
color: var(--success);
2014-03-26 01:13:38 +08:00
}
.hljs-symbol,
.ruby .hljs-symbol .hljs-string,
.lisp .hljs-keyword,
.tex .hljs-special,
.hljs-prompt {
color: var(--hljs-symbol);
2014-03-26 01:13:38 +08:00
}
.hljs-built_in,
.lisp .hljs-title,
.clojure .hljs-built_in,
.hljs-builtin-name {
color: var(--tertiary-high);
2014-03-26 01:13:38 +08:00
}
.meta {
color: var(--primary-medium);
2014-03-26 01:13:38 +08:00
font-weight: bold;
}
.hljs-deletion {
background: var(--danger-low);
2014-03-26 01:13:38 +08:00
}
.hljs-addition {
background: var(--success-low);
2014-03-26 01:13:38 +08:00
}
.diff .hljs-meta {
color: var(--primary-low);
2013-10-22 04:55:16 +08:00
}
/*
--------------------------------------------------------------------------------
| SHOULD NOT BE REMOVED |
--------------------------------------------------------------------------------
*/
p > code,
li > code,
pre > code {
2022-04-07 04:16:19 +08:00
color: var(--danger);
background: var(--secondary-very-high);
padding: 3px 5px 2px 5px;
border-radius: 5px;
}
// removed some unnecessary styles here