forked from components-ai/css.gui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode-styles.css
More file actions
99 lines (83 loc) · 1.31 KB
/
code-styles.css
File metadata and controls
99 lines (83 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
code[class*='language-'],
pre[class*='language-'] {
color: #feacbc;
background: #000000;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
font-size: 1em;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #c7e2ff;
}
.token.punctuation {
color: #c7c4ff;
}
.token.tag,
.token.attr-name,
.token.namespace,
.token.deleted {
color: #ffced8;
}
.token.function-name {
color: #eda500;
}
.token.boolean,
.token.constant {
color: #ebebeb;
}
.token.class-name,
.token.symbol,
.token.function,
.token.property {
color: #a2cdff;
}
.token.selector,
.token.atrule,
.token.keyword,
.token.builtin {
color: #878697;
}
.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
color: #feefff;
}
.token.operator,
.token.entity,
.token.url {
color: #6feff4;
}
.token.important {
font-weight: bold;
color: #eef7ef;
}
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.inserted {
color: #b9f8d7;
}
.token.number {
color: #fe89a1;
}