source: node_modules/highlight.js/scss/stackoverflow-dark.scss

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 997 bytes
RevLine 
[d24f17c]1/*!
2 * StackOverflow.com dark style
3 *
4 * @stackoverflow/stacks v0.56.0
5 * https://github.com/StackExchange/Stacks
6 */
7
8.hljs {
9 display: block;
10 overflow-x: auto;
11 padding: 0.5em;
12 color: #ffffff;
13 background: #1c1b1b;
14}
15
16.hljs-comment {
17 color: #999999;
18}
19
20.hljs-keyword,
21.hljs-selector-tag,
22.hljs-meta-keyword,
23.hljs-doctag,
24.hljs-section,
25.hljs-selector-class,
26.hljs-meta,
27.hljs-selector-pseudo,
28.hljs-attr {
29 color: #88aece;
30}
31
32.hljs-attribute {
33 color: v#c59bc1;
34}
35
36.hljs-name,
37.hljs-type,
38.hljs-number,
39.hljs-selector-id,
40.hljs-quote,
41.hljs-template-tag,
42.hljs-built_in,
43.hljs-title,
44.hljs-literal {
45 color: #f08d49;
46}
47
48.hljs-string,
49.hljs-regexp,
50.hljs-symbol,
51.hljs-variable,
52.hljs-template-variable,
53.hljs-link,
54.hljs-selector-attr,
55.hljs-meta-string {
56 color: #b5bd68;
57}
58
59.hljs-bullet,
60.hljs-code {
61 color: #cccccc;
62}
63
64.hljs-deletion {
65 color: #de7176;
66}
67
68.hljs-addition {
69 color: #76c490;
70}
71
72.hljs-emphasis {
73 font-style: italic;
74}
75
76.hljs-strong {
77 font-weight: bold;
78}
Note: See TracBrowser for help on using the repository browser.