aboutsummaryrefslogtreecommitdiff
path: root/alacritty/.config/alacritty/alacritty.yml
blob: 9ed0254c5759fdb0b439a77ab0f57143ee80ac74 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
font:
    size: 18
schemes:
    solarized_light: &light
      # Default colors
      primary:
        background: '0xfdf6e3' # base3
        foreground: '0x657b83' # base00

      # Cursor colors
      cursor:
        text:   '0xfdf6e3' # base3
        cursor: '0x657b83' # base00

      # Normal colors
      normal:
        black:   '0x073642' # base02
        red:     '0xdc322f' # red
        green:   '0x859900' # green
        yellow:  '0xb58900' # yellow
        blue:    '0x268bd2' # blue
        magenta: '0xd33682' # magenta
        cyan:    '0x2aa198' # cyan
        white:   '0xeee8d5' # base2

      # Bright colors
      bright:
        black:   '0x002b36' # base03
        red:     '0xcb4b16' # orange
        green:   '0x586e75' # base01
        yellow:  '0x657b83' # base00
        blue:    '0x839496' # base0
        magenta: '0x6c71c4' # violet
        cyan:    '0x93a1a1' # base1
        white:   '0xfdf6e3' # base3

    solarized_light: &dark
      # Default colors
      primary:
        background: '0x002b36' # base03
        foreground: '0x839496' # base0

      # Cursor colors
      cursor:
        text:   '0x002b36' # base03
        cursor: '0x839496' # base0

      # Normal colors
      normal:
        black:   '0x073642' # base02
        red:     '0xdc322f' # red
        green:   '0x859900' # green
        yellow:  '0xb58900' # yellow
        blue:    '0x268bd2' # blue
        magenta: '0xd33682' # magenta
        cyan:    '0x2aa198' # cyan
        white:   '0xeee8d5' # base2

      # Bright colors
      bright:
        black:   '0x002b36' # base03
        red:     '0xcb4b16' # orange
        green:   '0x586e75' # base01
        yellow:  '0x657b83' # base00
        blue:    '0x839496' # base0
        magenta: '0x6c71c4' # violet
        cyan:    '0x93a1a1' # base1
        white:   '0xfdf6e3' # base3


colors: *dark