-
Notifications
You must be signed in to change notification settings - Fork 2
/
nord-dark.js
90 lines (89 loc) · 2.32 KB
/
nord-dark.js
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
const sidebarBackground = {
default: '#2e3440',
success: '#a3be8c',
notice: '#81a1c1',
warning: '#ebcb8b',
danger: '#bf616a',
surprise: '#b48ead',
info: '#eceff4'
}
module.exports = {
name: 'nord-dark',
displayName: 'Nord (dark)',
theme: {
background: {
default: '#2e3440',
success: '#a3be8c',
notice: '#8fbcbb',
warning: '#ebcb8b',
danger: '#bf616a',
surprise: '#b48ead',
info: '#88c0d0'
},
foreground: {
default: '#e5e9f0',
info: '#5e81ac'
},
styles: {
transparentOverlay: {
background: {
default: 'rgba(46, 52, 64, 0.8)'
},
foreground: {
default: '#d8dee9'
}
},
dialog: {
background: {
default: '#434c5e'
},
foreground: {
default: '#e5e9f0'
}
},
sidebar: {
background: sidebarBackground,
foreground: {
default: '#e5e9f0'
},
highlight: {
default: '#88c0d0'
}
},
sidebarHeader: {
background: {
default: '#4c566a'
},
foreground: {
default: '#eceff4'
}
},
paneHeader: {
foreground: {
default: '#d8dee9'
},
background: {
default: '#2e3440',
success: '#a3be8c',
notice: '#81a1c1',
warning: '#ebcb8b',
danger: '#bf616a',
surprise: '#b48ead',
info: '#eceff4'
}
},
pane: {
background: {
...sidebarBackground,
default: '#2e3440',
},
foreground: {
default: '#e5e9f0'
},
highlight: {
default: '#eceff4'
}
}
}
}
}