From 269e8b88d68b1d48e2af92ef5b4b005f0bc229a9 Mon Sep 17 00:00:00 2001 From: Robert Günzler Date: Tue, 23 Jun 2020 12:56:18 +0200 Subject: alacritty: cleanup and restructure Adds a README that explains how it works. Introduces common extension prefixes to identify overlays and color sets and makes the script output to stdout instead of to file --- .config/alacritty/papercolor_dark.color.yml | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .config/alacritty/papercolor_dark.color.yml (limited to '.config/alacritty/papercolor_dark.color.yml') diff --git a/.config/alacritty/papercolor_dark.color.yml b/.config/alacritty/papercolor_dark.color.yml new file mode 100644 index 0000000..7fe2264 --- /dev/null +++ b/.config/alacritty/papercolor_dark.color.yml @@ -0,0 +1,44 @@ +colors: + primary: + background: &bg '#1c1c1c' + foreground: &fg '#d0d0d0' + + cursor: + text: *bg + cursor: *fg + + selection: + text: '#251c16' + background: '#fffffc' + + normal: + black: '#1c1c1c' + red: '#af005f' + green: '#5faf00' + yellow: '#d7af5f' + blue: '#5fafd7' + magenta: '#808080' + cyan: '#d7875f' + white: '#d0d0d0' + + bright: + black: '#585858' + red: '#5faf5f' + green: '#afd700' + yellow: '#af87d7' + blue: '#ffaf00' + magenta: '#00afaf' + cyan: '#5f8787' + white: '#fffffc' + + #dim: + # black: '0x000000' + # red: '0x8c3336' + # green: '0x7a8530' + # yellow: '0x97822e' + # blue: '0x506d8f' + # magenta: '0x80638e' + # cyan: '0x497e7a' + # white: '0x9a9a9a' + + indexed_colors: [] -- cgit 1.4.1