1/* Base16 Atelier Plateau Light - Theme */
2/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */
3/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
5/* Atelier-Plateau Comment */
6.hljs-comment {
7 color: #655d5d;
8}
9
10/* Atelier-Plateau Red */
11.hljs-variable,
12.hljs-attribute,
13.hljs-tag,
14.hljs-regexp,
15.hljs-name,
16.ruby .hljs-constant,
17.xml .hljs-tag .hljs-title,
18.xml .hljs-pi,
19.xml .hljs-doctype,
20.html .hljs-doctype,
21.css .hljs-id,
22.css .hljs-class,
23.css .hljs-pseudo {
24 color: #ca4949;
25}
26
27/* Atelier-Plateau Orange */
28.hljs-number,
29.hljs-preprocessor,
30.hljs-built_in,
31.hljs-literal,
32.hljs-params,
33.hljs-constant {
34 color: #b45a3c;
35}
36
37/* Atelier-Plateau Yellow */
38.ruby .hljs-class .hljs-title,
39.css .hljs-rule .hljs-attribute {
40 color: #a06e3b;
41}
42
43/* Atelier-Plateau Green */
44.hljs-string,
45.hljs-value,
46.hljs-inheritance,
47.hljs-header,
48.ruby .hljs-symbol,
49.xml .hljs-cdata {
50 color: #4b8b8b;
51}
52
53/* Atelier-Plateau Aqua */
54.hljs-title,
55.css .hljs-hexcolor {
56 color: #5485b6;
57}
58
59/* Atelier-Plateau Blue */
60.hljs-function,
61.python .hljs-decorator,
62.python .hljs-title,
63.ruby .hljs-function .hljs-title,
64.ruby .hljs-title .hljs-keyword,
65.perl .hljs-sub,
66.javascript .hljs-title,
67.coffeescript .hljs-title {
68 color: #7272ca;
69}
70
71/* Atelier-Plateau Purple */
72.hljs-keyword,
73.javascript .hljs-function {
74 color: #8464c4;
75}
76
77.diff .hljs-deletion,
78.diff .hljs-addition {
79 color: #1b1818;
80 display: inline-block;
81 width: 100%;
82}
83
84.diff .hljs-deletion {
85 background-color: #ca4949;
86}
87
88.diff .hljs-addition {
89 background-color: #4b8b8b;
90}
91
92.diff .hljs-change {
93 color: #7272ca;
94}
95
96.hljs {
97 display: block;
98 overflow-x: auto;
99 background: #f4ecec;
100 color: #585050;
101 padding: 0.5em;
102 -webkit-text-size-adjust: none;
103}
104
105.coffeescript .javascript,
106.javascript .xml,
107.tex .hljs-formula,
108.xml .javascript,
109.xml .vbscript,
110.xml .css,
111.xml .hljs-cdata {
112 opacity: 0.5;
113}