File tree 7 files changed +893
-0
lines changed
7 files changed +893
-0
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,20 @@ New Grammars:
4
4
5
5
- added 3rd party Aiken grammar to SUPPORTED_LANGUAGES [ Josh Marchand] [ ]
6
6
7
+ Themes:
8
+
9
+ - Added ` Night Coder Ash ` theme [ Ashkan Shirpour] [ ]
10
+ - Added ` Night Coder Charcoal ` theme [ Ashkan Shirpour] [ ]
11
+ - Added ` Night Coder Ember ` theme [ Ashkan Shirpour] [ ]
12
+ - Added ` Night Coder Flame ` theme [ Ashkan Shirpour] [ ]
13
+ - Added ` Paper ` theme [ Ashkan Shirpour] [ ]
14
+ - Added ` Ice ` theme [ Ashkan Shirpour] [ ]
15
+
7
16
CONTRIBUTORS
8
17
[ Josh Marchand] [ https://github.com/yHSJ ]
9
18
19
+ [ Ashkan Shirpour ] : https://github.com/a5hk
20
+
10
21
## Version 11.11.1
11
22
12
23
- Fixes regression with Rust grammar.
Original file line number Diff line number Diff line change
1
+ /*
2
+ Theme: Ice
3
+ Author: Ashkan Shirpour
4
+ Repository: https://github.com/a5hk/ice
5
+ */
6
+
7
+ .hljs-meta {
8
+ color : # a8a8ff ;
9
+ }
10
+
11
+ .hljs-comment {
12
+ color : # 456174 ;
13
+ }
14
+
15
+ .hljs-variable .constant_ ,
16
+ .hljs-variable .language_ {
17
+ color : # b3fbff ;
18
+ }
19
+
20
+ .hljs-operator {
21
+ color : # d1aaf8 ;
22
+ }
23
+
24
+ .hljs-doctag {
25
+ color : # aab7c0 ;
26
+ }
27
+
28
+ .hljs-title .function_ .invoke__ {
29
+ color : # 86f9d2 ;
30
+ }
31
+
32
+ .hljs-title .function_ {
33
+ color : # 7ece98 ;
34
+ }
35
+
36
+ .hljs-keyword ,
37
+ .hljs-meta .hljs-keyword {
38
+ color : # d1aaf8 ;
39
+ }
40
+
41
+ .hljs-literal ,
42
+ .hljs-number ,
43
+ .hljs-symbol ,
44
+ .hljs-regexp ,
45
+ .hljs-char .escape_ {
46
+ color : # a8a8ff ;
47
+ }
48
+
49
+ .hljs-built_in {
50
+ color : # 77d8f8 ;
51
+ }
52
+
53
+ .hljs-title ,
54
+ .hljs-title .class_ ,
55
+ .hljs-title .class_ .inherited__ {
56
+ color : # 77d8f8 ;
57
+ }
58
+
59
+ .hljs-params {
60
+ color : # e5e9ec ;
61
+ }
62
+
63
+ .hljs-property {
64
+ color : # 2dd2ae ;
65
+ }
66
+
67
+ .hljs-string ,
68
+ .hljs-meta .hljs-string {
69
+ color : # 20dfd6 ;
70
+ }
71
+
72
+ .hljs-type {
73
+ color : # 4dc3fe ;
74
+ }
75
+
76
+ .hljs-variable ,
77
+ .hljs-template-variable {
78
+ color : # c0cad0 ;
79
+ }
80
+
81
+ .hljs-attr ,
82
+ .hljs-tag .hljs-attr ,
83
+ .hljs-attribute ,
84
+ .hljs-selector-tag ,
85
+ .hljs-selector-id ,
86
+ .hljs-selector-class ,
87
+ .hljs-selector-attr ,
88
+ .hljs-selector-pseudo {
89
+ color : # 86f9d2 ;
90
+ }
91
+
92
+ .hljs-tag ,
93
+ .hljs-template-tag ,
94
+ .hljs-tag .hljs-name ,
95
+ .hljs-name {
96
+ color : # 2dd2ae ;
97
+ }
98
+
99
+ .hljs-section {
100
+ color : # 86f9d2 ;
101
+ }
102
+
103
+ .hljs-strong {
104
+ font-weight : bold;
105
+ }
106
+
107
+ .hljs-emphasis ,
108
+ .hljs-quote {
109
+ font-style : italic;
110
+ }
111
+
112
+ .hljs-punctuation {
113
+ color : # aab7c0 ;
114
+ }
115
+
116
+ .hljs-deletion {
117
+ color : # ff7575 ;
118
+ }
119
+
120
+ .hljs-addition {
121
+ color : # 53ac53 ;
122
+ }
123
+
124
+ .hljs-subst {
125
+ color : # c0cad0 ;
126
+ }
127
+
128
+ .hljs-bullet {
129
+ color : # e5e9ec ;
130
+ }
131
+
132
+ .hljs-link {
133
+ color : # d1aaf8 ;
134
+ }
135
+
136
+ .hljs-formula {
137
+ color : # a8a8ff ;
138
+ }
139
+
140
+ .hljs-code {
141
+ color : # aab7c0 ;
142
+ }
143
+
144
+ .hljs {
145
+ background : # 012841 ;
146
+ color : # c0cad0 ;
147
+ }
Original file line number Diff line number Diff line change
1
+ /*
2
+ Theme: Night Coder Ash
3
+ Author: Ashkan Shirpour
4
+ Repository: https://github.com/a5hk/night-coder
5
+ */
6
+
7
+ .hljs-meta {
8
+ color : # d1b485 ;
9
+ }
10
+
11
+ .hljs-comment {
12
+ color : # 646464 ;
13
+ }
14
+
15
+ .hljs-variable .constant_ ,
16
+ .hljs-variable .language_ {
17
+ color : # ff9e9e ;
18
+ }
19
+
20
+ .hljs-operator {
21
+ color : # e0e0b8 ;
22
+ }
23
+
24
+ .hljs-doctag {
25
+ color : # b9b9b9 ;
26
+ }
27
+
28
+ .hljs-title .function_ .invoke__ {
29
+ color : # e6d299 ;
30
+ }
31
+
32
+ .hljs-title .function_ {
33
+ color : # 42d79e ;
34
+ }
35
+
36
+ .hljs-keyword ,
37
+ .hljs-meta .hljs-keyword {
38
+ color : # eea0e5 ;
39
+ }
40
+
41
+ .hljs-literal ,
42
+ .hljs-number ,
43
+ .hljs-symbol ,
44
+ .hljs-regexp ,
45
+ .hljs-char .escape_ {
46
+ color : # c5abf7 ;
47
+ }
48
+
49
+ .hljs-built_in {
50
+ color : # fc9cc4 ;
51
+ }
52
+
53
+ .hljs-title ,
54
+ .hljs-title .class_ ,
55
+ .hljs-title .class_ .inherited__ {
56
+ color : # 9db9e7 ;
57
+ }
58
+
59
+ .hljs-params {
60
+ color : # e9e9e9 ;
61
+ }
62
+
63
+ .hljs-property {
64
+ color : # f0a875 ;
65
+ }
66
+
67
+ .hljs-string ,
68
+ .hljs-meta .hljs-string {
69
+ color : # 8fc78a ;
70
+ }
71
+
72
+ .hljs-type {
73
+ color : # 04ccd7 ;
74
+ }
75
+
76
+ .hljs-variable ,
77
+ .hljs-template-variable {
78
+ color : # cbcbcb ;
79
+ }
80
+
81
+ .hljs-attr ,
82
+ .hljs-tag .hljs-attr ,
83
+ .hljs-attribute ,
84
+ .hljs-selector-tag ,
85
+ .hljs-selector-id ,
86
+ .hljs-selector-class ,
87
+ .hljs-selector-attr ,
88
+ .hljs-selector-pseudo {
89
+ color : # e6d299 ;
90
+ }
91
+
92
+ .hljs-tag ,
93
+ .hljs-template-tag ,
94
+ .hljs-tag .hljs-name ,
95
+ .hljs-name {
96
+ color : # f0a875 ;
97
+ }
98
+
99
+ .hljs-section {
100
+ color : # e6d299 ;
101
+ }
102
+
103
+ .hljs-strong {
104
+ font-weight : bold;
105
+ }
106
+
107
+ .hljs-emphasis ,
108
+ .hljs-quote {
109
+ font-style : italic;
110
+ }
111
+
112
+ .hljs-punctuation {
113
+ color : # b9b9b9 ;
114
+ }
115
+
116
+ .hljs-deletion {
117
+ color : # ff7575 ;
118
+ }
119
+
120
+ .hljs-addition {
121
+ color : # 53ac53 ;
122
+ }
123
+
124
+ .hljs-subst {
125
+ color : # cbcbcb ;
126
+ }
127
+
128
+ .hljs-bullet {
129
+ color : # e9e9e9 ;
130
+ }
131
+
132
+ .hljs-link {
133
+ color : # 42d79e ;
134
+ }
135
+
136
+ .hljs-formula {
137
+ color : # d1b485 ;
138
+ }
139
+
140
+ .hljs-code {
141
+ color : # b9b9b9 ;
142
+ }
143
+
144
+ .hljs {
145
+ background : # 2c2c2c ;
146
+ color : # cbcbcb ;
147
+ }
You can’t perform that action at this time.
0 commit comments