UNPKG

1.31 kBCSSView Raw
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.hljs-quote {
8 color: #655d5d;
9}
10
11/* Atelier-Plateau Red */
12.hljs-variable,
13.hljs-template-variable,
14.hljs-attribute,
15.hljs-tag,
16.hljs-name,
17.hljs-regexp,
18.hljs-link,
19.hljs-name,
20.hljs-selector-id,
21.hljs-selector-class {
22 color: #ca4949;
23}
24
25/* Atelier-Plateau Orange */
26.hljs-number,
27.hljs-meta,
28.hljs-built_in,
29.hljs-builtin-name,
30.hljs-literal,
31.hljs-type,
32.hljs-params {
33 color: #b45a3c;
34}
35
36/* Atelier-Plateau Green */
37.hljs-string,
38.hljs-symbol,
39.hljs-bullet {
40 color: #4b8b8b;
41}
42
43/* Atelier-Plateau Blue */
44.hljs-title,
45.hljs-section {
46 color: #7272ca;
47}
48
49/* Atelier-Plateau Purple */
50.hljs-keyword,
51.hljs-selector-tag {
52 color: #8464c4;
53}
54
55.hljs-deletion,
56.hljs-addition {
57 color: #1b1818;
58 display: inline-block;
59 width: 100%;
60}
61
62.hljs-deletion {
63 background-color: #ca4949;
64}
65
66.hljs-addition {
67 background-color: #4b8b8b;
68}
69
70.hljs {
71 display: block;
72 overflow-x: auto;
73 background: #f4ecec;
74 color: #585050;
75 padding: 0.5em;
76}
77
78.hljs-emphasis {
79 font-style: italic;
80}
81
82.hljs-strong {
83 font-weight: bold;
84}