summary refs log tree commit diff
path: root/.config/alacritty/papercolor_dark.yml
blob: 7f19bce8b4ffc3e3287a9ac39ec8a76af65afd92 (plain) (blame)
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
# Colors (Papercolor)
colors:
  # Default colors
  primary:
    background: &bg '#1c1c1c'
    foreground: &fg '#d0d0d0'

    # Bright and dim foreground colors
    #
    # The dimmed foreground color is calculated automatically if it is not present.
    # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
    # is `false`, the normal foreground color will be used.
    # dim_foreground: '#BDC0BA'
    # bright_foreground: '#ffffff' # just white ;)

  # Cursor colors
  #
  # Colors which should be used to draw the terminal cursor. If these are unset,
  # the cursor color will be the inverse of the cell color.
  cursor:
    text: *bg
    cursor: *fg

  # Selection colors
  #
  # Colors which should be used to draw the selection area. If selection 
  # background is unset, selection color will be the inverse of the cell colors. 
  # If only text is unset the cell text color will remain the same.
  selection:
   text: '#251c16'
   background: '#fffffc'

  # Normal colors
  normal:
    black:   '#1c1c1c'
    red:     '#af005f'
    green:   '#5faf00'
    yellow:  '#d7af5f'
    blue:    '#5fafd7'
    magenta: '#808080'
    cyan:    '#d7875f'
    white:   '#d0d0d0'

  # Bright colors
  bright:
    black:   '#585858'
    red:     '#5faf5f'
    green:   '#afd700'
    yellow:  '#af87d7'
    blue:    '#ffaf00'
    magenta: '#00afaf'
    cyan:    '#5f8787'
    white:   '#fffffc'

  # Dim colors
  #
  # If the dim colors are not set, they will be calculated automatically based
  # on the `normal` colors.
  #dim:
  #  black:   '0x000000'
  #  red:     '0x8c3336'
  #  green:   '0x7a8530'
  #  yellow:  '0x97822e'
  #  blue:    '0x506d8f'
  #  magenta: '0x80638e'
  #  cyan:    '0x497e7a'
  #  white:   '0x9a9a9a'

  # Indexed Colors
  #
  # The indexed colors include all colors from 16 to 256.
  # When these are not set, they're filled with sensible defaults.
  #
  # Example:
  #  - { index: 16, color: '0x000000' }
  indexed_colors: []