dotfiles/.config/alacritty/alacritty.yml

93 lines
2.7 KiB
YAML
Raw Normal View History

2021-05-12 18:14:09 +02:00
font:
normal:
family: Fira Code
style: Regular
2021-05-21 03:21:22 +02:00
size: 14
2021-05-12 18:14:09 +02:00
2021-06-06 15:16:48 +02:00
color-schemes:
one-dark: &one-dark
primary:
background: "#282c34" # syntax-bg
foreground: "#abb2bf" # syntax-fg
cursor:
text: CellBackground
cursor: CellForeground
vi_mode_cursor:
text: CellBackground
cursor: CellForeground
search:
matches:
foreground: CellForeground
background: "#314365" # (manually extracted via color picker)
focused_match:
foreground: CellForeground
background: "#3E4451" # (manually extracted via color picker)
bar:
background: "#1B1D23" # (manually extracted via color picker)
foreground: "#abb2bf" # syntax-fg
selection:
text: CellForeground
background: "#3e4451" # syntax-selection-color
normal:
black: "#282c34" # syntax-bg
red: "#e06c75" # red 1
green: "#98c379" # green
yellow: "#e5c07b" # orange 2
blue: "#61afef" # blue
magenta: "#c678dd" # purple
cyan: "#56b6c2" # cyan
white: "#abb2bf" # syntax-fg
bright:
black: "#5c6370" # mono-3
red: "#be5046" # red 2
green: "#98c379" # green
yellow: "#d19a66" # orange 1
blue: "#61afef" # blue
magenta: "#c678dd" # purple
cyan: "#56b6c2" # cyan
white: "#636d83" # syntax-gutter-text-color
one-light: &one-light
primary:
background: "#fafafa" # syntax-bg
foreground: "#383a42" # syntax-fg
cursor:
text: CellBackground
cursor: CellForeground
vi_mode_cursor:
text: CellBackground
cursor: CellForeground
search:
matches:
foreground: CellForeground
background: "#d8defb" # (manually extracted via color picker)
focused_match:
foreground: CellForeground
background: "#e5e5e6" # (manually extracted via color picker)
bar:
background: "#ffffff" # (manually extracted via color picker)
foreground: "#383a42" # syntax-fg
selection:
text: CellForeground
background: "#e5e5e6" # syntax-selection-color
normal:
black: "#383a42" # syntax-fg
red: "#ca1243" # red 2
green: "#50a14f" # green
yellow: "#b76b01" # orange 1
blue: "#4078f2" # blue
magenta: "#a626a4" # purple
cyan: "#0184bc" # cyan
white: "#fafafa" # syntax-bg
bright:
black: "#696c77" # mono-2
red: "#e45649" # red 1
green: "#50a14f" # green
yellow: "#cb7701" # orange 2
blue: "#4078f2" # blue
magenta: "#a626a4" # purple
cyan: "#0184bc" # cyan
white: "#9d9d9f" # syntax-gutter-text-color
colors: *one-dark