This repository was archived by the owner on Aug 27, 2024. It is now read-only.
generated from arcus-azure/arcus.github.template
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdark.js
More file actions
111 lines (108 loc) · 1.94 KB
/
dark.js
File metadata and controls
111 lines (108 loc) · 1.94 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
100
101
102
103
104
105
106
107
108
109
110
111
('use strict');
// Original: https://github.com/sdras/night-owl-vscode-theme
var theme = {
plain: {
color: '#e9edfa',
backgroundColor: '#19203d',
},
styles: [
{
types: ['changed'],
style: {
color: 'rgb(162, 191, 252)',
fontStyle: 'italic',
},
},
{
types: ['deleted'],
style: {
color: 'hsl(5, 74%, 69%)',
fontStyle: 'italic',
},
},
{
types: ['inserted', 'attr-name'],
style: {
color: 'hsl(119, 34%, 67%)',
fontStyle: 'italic',
},
},
{
types: ['comment'],
style: {
color: 'hsl(230, 4%, 74%)',
fontStyle: 'italic',
},
},
{
types: ['string', 'url'],
style: {
color: 'hsl(119, 34%, 67%)',
},
},
{
types: ['variable'],
style: {
color: '#47acff',
},
},
{
types: ['number'],
style: {
color: 'hsl(35, 99%, 66%)',
},
},
{
types: ['builtin', 'char', 'constant', 'function', 'operator'],
style: {
color: '#47acff',
},
},
{
// This was manually added after the auto-generation
// so that punctuations are not italicised
types: ['punctuation'],
style: {
color: '#e9edfa',
},
},
{
types: ['selector', 'doctype'],
style: {
color: '#e9edfa',
fontStyle: 'italic',
},
},
{
types: ['class-name'],
style: {
color: 'hsl(35, 99%, 66%)',
},
},
{
types: ['tag', 'keyword'],
style: {
color: 'hsl(301, 63%, 80%)',
},
},
{
types: ['boolean'],
style: {
color: 'hsl(35, 99%, 66%)',
},
},
{
types: ['property'],
style: {
color: 'hsl(5, 74%, 69%)',
},
},
{
types: ['namespace'],
style: {
opacity: 0.8,
},
},
],
};
module.exports = theme;