this repo has no description
1/**
2 * Lucario Theme originally by Raphael Amorim [@raphamorim]
3 * https://github.com/raphamorim/lucario
4 *
5 * Ported for PrismJS by Christopher Kapic [@christopher-kapic]
6 */
7
8code[class*="language-"],
9pre[class*="language-"] {
10 color: #f8f8f2;
11 background: none;
12 text-shadow: 0 1px rgba(0, 0, 0, 0.3);
13 font-family: Monaco, Consolas, "Andale Mono", "Ubuntu Mono", monospace;
14 font-size: 14px;
15 text-align: left;
16 white-space: pre;
17 word-spacing: normal;
18 word-break: normal;
19 word-wrap: normal;
20 tab-size: 4;
21 hyphens: none;
22}
23
24/* Code blocks */
25pre[class*="language-"] {
26 padding: 1em;
27 margin: 0.5em 0;
28 overflow: auto;
29 border-radius: 0.3em;
30}
31
32:not(pre) > code[class*="language-"],
33pre[class*="language-"] {
34 background: #263e52;
35}
36
37/* Inline code */
38:not(pre) > code[class*="language-"] {
39 padding: 0.1em;
40 border-radius: 0.3em;
41 white-space: normal;
42}
43
44.token.comment,
45.token.prolog,
46.token.doctype,
47.token.cdata {
48 color: #5c98cd;
49}
50
51.token.punctuation {
52 color: #f8f8f2;
53}
54
55.namespace {
56 opacity: 0.7;
57}
58
59.token.property,
60.token.tag,
61.token.constant,
62.token.symbol,
63.token.deleted {
64 color: #f05e5d;
65}
66
67.token.boolean,
68.token.number {
69 color: #bc94f9;
70}
71
72.token.selector,
73.token.attr-name,
74.token.string,
75.token.char,
76.token.builtin,
77.token.inserted {
78 color: #fcfcd6;
79}
80
81.token.operator,
82.token.entity,
83.token.url,
84.language-css .token.string,
85.style .token.string,
86.token.variable {
87 color: #f8f8f2;
88}
89
90.token.atrule,
91.token.attr-value,
92.token.function,
93.token.class-name {
94 color: #66d8ef;
95}
96
97.token.keyword {
98 color: #6eb26e;
99}
100
101.token.regex,
102.token.important {
103 color: #f05e5d;
104}
105
106.token.important,
107.token.bold {
108 font-weight: bold;
109}
110
111.token.italic {
112 font-style: italic;
113}
114
115.token.entity {
116 cursor: help;
117}