alacritty.yml (852B) [raw]
1 # Configuration for Alacritty, the GPU enhanced terminal emulator. 2 # See /etc/alacritty/alacritty.yml for a full reference 3 4 env: 5 TERM: xterm-256color 6 7 # Colors (Gruvbox dark) 8 # -> https://github.com/alacritty/alacritty/wiki/Color-schemes#gruvbox 9 colors: 10 # Default colors 11 primary: 12 # hard contrast: background = '#1d2021' 13 background: '#282828' 14 # soft contrast: background = '#32302f' 15 foreground: '#ebdbb2' 16 17 # Normal colors 18 normal: 19 black: '#282828' 20 red: '#cc241d' 21 green: '#98971a' 22 yellow: '#d79921' 23 blue: '#458588' 24 magenta: '#b16286' 25 cyan: '#689d6a' 26 white: '#a89984' 27 28 # Bright colors 29 bright: 30 black: '#928374' 31 red: '#fb4934' 32 green: '#b8bb26' 33 yellow: '#fabd2f' 34 blue: '#83a598' 35 magenta: '#d3869b' 36 cyan: '#8ec07c' 37 white: '#ebdbb2'