Attribute changed highlight
[roojs1] / highlight / styles / atom-one-light.css
1 /*
2
3 Atom One Light by Daniel Gamage
4 Original One Light Syntax theme from https://github.com/atom/one-light-syntax
5
6 base:    #fafafa
7 mono-1:  #383a42
8 mono-2:  #686b77
9 mono-3:  #a0a1a7
10 hue-1:   #0184bb
11 hue-2:   #4078f2
12 hue-3:   #a626a4
13 hue-4:   #50a14f
14 hue-5:   #e45649
15 hue-5-2: #c91243
16 hue-6:   #986801
17 hue-6-2: #c18401
18
19 */
20
21 .hljs {
22   display: block;
23   overflow-x: auto;
24   padding: 0.5em;
25   color: #383a42;
26   background: #fafafa;
27 }
28
29 .hljs-comment,
30 .hljs-quote {
31   color: #a0a1a7;
32   font-style: italic;
33 }
34
35 .hljs-doctag,
36 .hljs-keyword,
37 .hljs-formula {
38   color: #a626a4;
39 }
40
41 .hljs-section,
42 .hljs-name,
43 .hljs-selector-tag,
44 .hljs-deletion,
45 .hljs-subst {
46   color: #e45649;
47 }
48
49 .hljs-literal {
50   color: #0184bb;
51 }
52
53 .hljs-string,
54 .hljs-regexp,
55 .hljs-addition,
56 .hljs-attribute,
57 .hljs-meta-string {
58   color: #50a14f;
59 }
60
61 .hljs-built_in,
62 .hljs-class .hljs-title {
63   color: #c18401;
64 }
65
66 .hljs-variable,
67 .hljs-template-variable,
68 .hljs-type,
69 .hljs-selector-class,
70 .hljs-selector-attr,
71 .hljs-selector-pseudo,
72 .hljs-number {
73   color: #986801;
74 }
75
76 .hljs-symbol,
77 .hljs-bullet,
78 .hljs-link,
79 .hljs-meta,
80 .hljs-selector-id,
81 .hljs-title {
82   color: #4078f2;
83 }
84
85 .hljs-emphasis {
86   font-style: italic;
87 }
88
89 .hljs-strong {
90   font-weight: bold;
91 }
92
93 .hljs-link {
94   text-decoration: underline;
95 }