about summary refs log tree commit diff stats
path: root/js/games/nluqo.github.io/broughlike-tutorial/highlight.min.css
blob: 00adf5fea45dfe9bdd994782916b790c3fbb6901 (plain) (blame)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
.hljs{
	display:block;
	overflow-x:auto;
	padding:0.5em;
}
/*

#232224;
#656f78;
#434346;

#007cff;
#835c1d;
#8a00a3;
#ff3ac1;
#001978;
#006405;
#ff6f00;
*/

body{
	--color-default: #007CCA;
	--color-comment: #929EA8;
	--color-string: #6A0638;
	--color-addition: #5200A5;
	--color-meta: #B1B061;

	--color-tag: #B34DBC;
	--color-keyword: #FF45D1;
	--color-name: #FF45D1;
	--color-attribute: #FF80E0;
	--color-params: #499901;
	--color-number: #B32600;

	/* no idea */
	--color-title: red; 
	--color-variable: red;
	--color-literal: red;
	--color-metastring: red;
}

body .remove, body .add, body .greyCode{/*

	--color-default: #f8f8f2;
	--color-comment: #888888;
	--color-string: #ac80e8;
	--color-title: #880000;
	--color-variable: #BC6060;
	--color-literal: #78A960;
	--color-addition: #56d8ef;
	--color-meta: #1f7199;
	--color-metastring: #4d99bf;

	--color-tag: #f8f8f2;
	--color-keyword: #f92472;
	--color-attribute: #98e22a;
	--color-name: #f92472;
	--color-params: #fd9622;
	--color-number: #ac80ff;*/
}

.hljs,.hljs-subst{
	color: var(--color-default);
}

.hljs-params{
	color: var(--color-params);
}

.hljs-comment{
	color: var(--color-comment);
}

.hljs-name{
	color: var(--color-name);
}

.hljs-keyword,.hljs-selector-tag,.hljs-meta-keyword,.hljs-doctag{
	font-weight: bold;
	color: var(--color-keyword);
}

.hljs-attribute, .hljs-attr{
	color: var(--color-attribute);
}

.hljs-type,.hljs-string,.hljs-selector-id,.hljs-selector-class,.hljs-quote,.hljs-template-tag,.hljs-deletion{
	color: var(--color-string);
}

.hljs-number{
	color: var(--color-number);
}

.hljs-tag{
	color: var(--color-tag);
}

.hljs-title,.hljs-section{
	color: var(--color-title);
	font-weight:bold
}

.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr,.hljs-selector-pseudo{
	color: var(--color-variable);
}

.hljs-literal{
	color: var(--color-literal);
}

.hljs-built_in,.hljs-bullet,.hljs-code,.hljs-addition, .hljs-function{
	color: var(--color-addition);
}

.hljs-meta{
	color: var(--color-meta);
}

.hljs-metastring{
	color: var(--color-metastring);
}

.hljs-emphasis{
	font-style:italic
}

.hljs-strong{
	font-weight:bold
}