-
Notifications
You must be signed in to change notification settings - Fork 9
/
_highlight-theme.scss
96 lines (80 loc) · 1.5 KB
/
_highlight-theme.scss
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
@import '../../../node_modules/@angular/material/theming';
/**
* Mimicking VS Dark+ theme as closely as possible
*/
@mixin covalent-highlight-theme() {
td-highlight {
background: #1e1e21;
.highlight {
color: $light-primary-text;
}
.copy-button {
color: $light-primary-text;
}
.hljs-comment,
.hljs-quote {
color: #608b4e;
}
.hljs-tag,
.hljs-name,
.hljs-selector-tag,
.hljs-literal {
color: #569cd6;
}
.hljs-keyword {
color: #c288bf;
}
.hljs-attr,
//.hljs-params, // Remove param color for now
.hljs-attribute {
color: #9cdcfe;
}
.hljs-string,
.hljs-selector-attr,
.hljs-regexp,
.hljs-link {
color: #ce9178;
}
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-pseudo {
color: #d7ba7d;
}
.hljs-meta {
color: #dcdcaa;
}
.hljs-built_in,
.hljs-builtin-name,
.hljs-type,
.hljs-section,
.hljs-class .hljs-title,
.hljs-symbol,
.hljs-bullet {
color: #4ec9b0;
}
.hljs-number {
color: #b5cea8;
}
.hljs-variable,
.hljs-template-variable {
color: #9fddfc;
}
.hljs-deletion {
color: #ffc8bd;
}
.hljs-addition {
background-color: #baeeba;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-doctag,
.hljs-strong {
font-weight: bold;
}
.hljs-formula {
background-color: #eeeeee;
font-style: italic;
}
}
}