blob: 4c4f6185be9545df755262d2c8f1d41289035771 (
plain)
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
|
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Check the default file in: https://github.com/alacritty/alacritty/blob/master/alacritty.yml
# Colors based on `soria` (https://github.com/mssola/soria).
colors:
primary:
background: '0x1c1c1c'
foreground: '0xd0d0d0'
normal:
black: '0x000000'
red: '0xd78787'
green: '0xb9dc92'
yellow: '0xffffaf'
blue: '0x87afd7'
magenta: '0xdfafdf'
cyan: '0x87afd7'
white: '0xd0d0d0'
bright:
black: '0x000000'
red: '0xd78787'
green: '0xb9dc92'
yellow: '0xffffaf'
blue: '0x87afd7'
magenta: '0xdfafdf'
cyan: '0x87afd7'
white: '0xd0d0d0'
search:
matches:
background: '0xd7af87'
foreground: '0x1c1c1c'
bar:
background: '0xd7af87'
foreground: '0x1c1c1c'
##
# Using Droid Sans Mono out of tradition at this point, with a bit of an offset
# so it doesn't feel too cluttered.
font:
normal:
family: Droid Sans Mono
bold:
family: Droid Sans Mono
italic:
family: Droid Sans Mono
bold_italic:
family: Droid Sans Mono
size: 10.0
offset:
y: 2
|