-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathalacritty.toml
executable file
·99 lines (86 loc) · 2.69 KB
/
alacritty.toml
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
# Adaptation of WezTerm colors to Alacritty (Dark Theme)
# Sakura Theme
# [[colors.indexed_colors]]
# index = 16
# color = "#9e97d0" # ca: purple
#
# [[colors.indexed_colors]]
# index = 17
# color = "#c58ea7" # ia: pink
#
# [colors.bright]
# black = "#3f3b3e" # gr: dark gray
# blue = "#665E7A" # vb: dark blue
# cyan = "#c58ea7" # ia: cyan (pink)
# green = "#878fb9" # va: green (blue)
# magenta = "#9e97d0" # ca: magenta
# red = "#c58ea7" # ia: red
# white = "#c5a3a9" # na: white
# yellow = "#9e97d0" # ca: yellow (purple)
#
# [colors.cursor]
# cursor = "#9e97d0" # ca: purple
# text = "#c5a3a9" # na: text
#
# [colors.normal]
# black = "#1c1a1c" # bl: black background
# blue = "#665E7A" # vb: dark blue
# cyan = "#c58ea7" # ia: cyan (pink)
# green = "#878fb9" # va: green (blue)
# magenta = "#9e97d0" # ca: magenta
# red = "#c58ea7" # ia: red
# white = "#c5a3a9" # na: light text
# yellow = "#9e97d0" # ca: yellow (purple)
#
# [colors.primary]
# background = "#1c1a1c" # bl: background
# foreground = "#786577" # na: text
#
# [colors.selection]
# background = "#3f3b3e" # gr: gray
# text = "#c5a3a9" # na: text
[colors.primary]
background = "#000000" # bl: dark background (almost black)
foreground = "#C9C7CD" # na: main text (light gray)
[colors.cursor]
cursor = "#92A2D5" # ca: blue lavender (cursor)
text = "#C9C7CD" # na: main text (light gray)
[colors.selection]
background = "#3B4252" # gr: dark gray (selection background)
text = "#C9C7CD" # na: main text (light gray)
[colors.normal]
black = "#000000" # bl: dark background (almost black)
red = "#EA83A5" # ia: intense pink (errors)
green = "#90B99F" # va: soft green (success)
yellow = "#E6B99D" # ca: beige (warnings)
blue = "#85B5BA" # va: light blue-green (information)
magenta = "#92A2D5" # ca: blue lavender (highlight)
cyan = "#85B5BA" # va: light blue-green (links)
white = "#C9C7CD" # na: main text (light gray)
[colors.bright]
black = "#4C566A" # nb: medium gray (bright black)
red = "#EA83A5" # ia: intense pink (bright red)
green = "#90B99F" # va: soft green (bright green)
yellow = "#E6B99D" # ca: beige (bright yellow)
blue = "#85B5BA" # va: light blue-green (bright blue)
magenta = "#92A2D5" # ca: blue lavender (bright magenta)
cyan = "#85B5BA" # va: light blue-green (bright cyan)
white = "#C9C7CD" # na: main text (bright white)
[[colors.indexed_colors]]
index = 16
color = "#F5A191" # ca: light peach (orange)
[[colors.indexed_colors]]
index = 17
color = "#E29ECA" # ia: soft pink (pink)
[cursor]
style = "Block"
unfocused_hollow = true
[font]
size = 16
[font.normal]
family = "IosevkaTerm NF"
[window]
option_as_alt = "Both"
opacity = 0.96
[env]
TERM = "xterm-256color"