-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathDracula.ron
More file actions
38 lines (38 loc) · 848 Bytes
/
Dracula.ron
File metadata and controls
38 lines (38 loc) · 848 Bytes
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
(
name: "Dracula",
foreground: "#e6e6e6",
background: "#1e1f29",
cursor: "#bbbbbb",
bright_foreground: "#ffffff",
dim_foreground: "#e6e6e6",
normal: (
black: "#000000",
red: "#ff5555",
green: "#50fa7b",
yellow: "#f1fa8c",
blue: "#bd93f9",
magenta: "#ff79c6",
cyan: "#8be9fd",
white: "#bbbbbb",
),
bright: (
black: "#555555",
red: "#ff5555",
green: "#50fa7b",
yellow: "#f1fa8c",
blue: "#bd93f9",
magenta: "#ff79c6",
cyan: "#8be9fd",
white: "#ffffff",
),
dim: (
black: "#000000",
red: "#ff5555",
green: "#50fa7b",
yellow: "#f1fa8c",
blue: "#bd93f9",
magenta: "#ff79c6",
cyan: "#8be9fd",
white: "#bbbbbb",
),
)