Add Alacritty config

This commit is contained in:
paoda 2020-06-18 01:05:20 -05:00
parent ebe7f695b8
commit 12cee5df91
1 changed files with 182 additions and 0 deletions

View File

@ -0,0 +1,182 @@
# Set Default Font
font:
normal:
family: MesloLGS NF
style: Regular
bold:
family: MesloLGS NF
style: Bold
italic:
family: MesloLGS NF
style: Italic
bold_italic:
family: MesloLGS NF
style: Bold Italic
# Color Schemes
schemes:
one_dark: &one_dark # Default colors
primary:
background: "#282c34"
foreground: "#abb2bf"
# Normal colors
normal:
# NOTE: Use '#131613' for the `black` color if you'd like to see
# black text on the background.
black: "#282c34"
red: "#e06c75"
green: "#98c379"
yellow: "#d19a66"
blue: "#61afef"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#abb2bf"
# Bright colors
bright:
black: "#5c6370"
red: "#e06c75"
green: "#98c379"
yellow: "#d19a66"
blue: "#61afef"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#ffffff"
one_light: &one_light # Default colors
primary:
foreground: "#282c34"
background: "#ffffff"
# Normal colors
normal:
# NOTE: Use '#131613' for the `black` color if you'd like to see
# black text on the background.
black: "#282c34"
red: "#e06c75"
green: "#98c379"
yellow: "#d19a66"
blue: "#61afef"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#abb2bf"
# Bright colors
bright:
black: "#5c6370"
red: "#e06c75"
green: "#98c379"
yellow: "#d19a66"
blue: "#61afef"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#ffffff"
# Default colors
afterglow: &afterglow
primary:
background: "#2c2c2c"
foreground: "#d6d6d6"
dim_foreground: "#dbdbdb"
bright_foreground: "#d9d9d9"
dim_background: "#202020" # not sure
bright_background: "#3a3a3a" # not sure
# Cursor colors
cursor:
text: "#2c2c2c"
cursor: "#d9d9d9"
# Normal colors
normal:
black: "#1c1c1c"
red: "#bc5653"
green: "#909d63"
yellow: "#ebc17a"
blue: "#7eaac7"
magenta: "#aa6292"
cyan: "#86d3ce"
white: "#cacaca"
# Bright colors
bright:
black: "#636363"
red: "#bc5653"
green: "#909d63"
yellow: "#ebc17a"
blue: "#7eaac7"
magenta: "#aa6292"
cyan: "#86d3ce"
white: "#f7f7f7"
# Dim colors
dim:
black: "#232323"
red: "#74423f"
green: "#5e6547"
yellow: "#8b7653"
blue: "#556b79"
magenta: "#6e4962"
cyan: "#5c8482"
white: "#828282"
material_theme: &material_theme # Default colors
primary:
background: "#1e282d"
foreground: "#c4c7d1"
# Normal colors
normal:
black: "#666666"
red: "#eb606b"
green: "#c3e88d"
yellow: "#f7eb95"
blue: "#80cbc4"
magenta: "#ff2f90"
cyan: "#aeddff"
white: "#ffffff"
# Bright colors
bright:
black: "#ff262b"
red: "#eb606b"
green: "#c3e88d"
yellow: "#f7eb95"
blue: "#7dc6bf"
magenta: "#6c71c4"
cyan: "#35434d"
white: "#ffffff"
monokai_pro: &monokai_pro # Default colors
primary:
background: "#2D2A2E"
foreground: "#FCFCFA"
# Normal colors
normal:
black: "#403E41"
red: "#FF6188"
green: "#A9DC76"
yellow: "#FFD866"
blue: "#FC9867"
magenta: "#AB9DF2"
cyan: "#78DCE8"
white: "#FCFCFA"
# Bright colors
bright:
black: "#727072"
red: "#FF6188"
green: "#A9DC76"
yellow: "#FFD866"
blue: "#FC9867"
magenta: "#AB9DF2"
cyan: "#78DCE8"
white: "#FCFCFA"
colors: *one_dark