From d6dcb7215f8defef6866193933f84351caea977a Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Sat, 12 Mar 2022 23:16:33 +0100 Subject: [PATCH] chore(alacritty): add schemes and update config Signed-off-by: Matej Focko --- .../shell/templates/alacritty/alacritty.yml | 8 +--- .../templates/alacritty/colors/breeze.yml | 44 +++++++++++++++++++ .../templates/alacritty/colors/campbell.yml | 28 ++++++++++++ .../alacritty/colors/rose-pine-dawn.yml | 34 ++++++++++++++ .../alacritty/colors/rose-pine-moon.yml | 34 ++++++++++++++ .../templates/alacritty/colors/rose-pine.yml | 34 ++++++++++++++ .../alacritty/colors/tomorrow_day.yml | 29 ++++++++++++ .../alacritty/colors/tomorrow_night.yml | 33 ++++++++++++++ .../colors/tomorrow_night_bright.yml | 28 ++++++++++++ 9 files changed, 266 insertions(+), 6 deletions(-) create mode 100644 playbooks/roles/shell/templates/alacritty/colors/breeze.yml create mode 100644 playbooks/roles/shell/templates/alacritty/colors/campbell.yml create mode 100644 playbooks/roles/shell/templates/alacritty/colors/rose-pine-dawn.yml create mode 100644 playbooks/roles/shell/templates/alacritty/colors/rose-pine-moon.yml create mode 100644 playbooks/roles/shell/templates/alacritty/colors/rose-pine.yml create mode 100644 playbooks/roles/shell/templates/alacritty/colors/tomorrow_day.yml create mode 100644 playbooks/roles/shell/templates/alacritty/colors/tomorrow_night.yml create mode 100644 playbooks/roles/shell/templates/alacritty/colors/tomorrow_night_bright.yml diff --git a/playbooks/roles/shell/templates/alacritty/alacritty.yml b/playbooks/roles/shell/templates/alacritty/alacritty.yml index 859ea5f..49c049b 100755 --- a/playbooks/roles/shell/templates/alacritty/alacritty.yml +++ b/playbooks/roles/shell/templates/alacritty/alacritty.yml @@ -5,13 +5,8 @@ env: TERM: alacritty window: - dimensions: - columns: 107 - lines: 30 - dynamic_padding: true decorations: none - startup_mode: Maximized font: normal: @@ -20,8 +15,9 @@ font: cursor: # Block, Underline, Beam - style: Underline + style: Beam thickness: 0.33 + blinking: On key_bindings: - key: F11 diff --git a/playbooks/roles/shell/templates/alacritty/colors/breeze.yml b/playbooks/roles/shell/templates/alacritty/colors/breeze.yml new file mode 100644 index 0000000..1cef6c0 --- /dev/null +++ b/playbooks/roles/shell/templates/alacritty/colors/breeze.yml @@ -0,0 +1,44 @@ +# KDE Breeze (Ported from Konsole) +colors: + # Default colors + primary: + background: "#232627" + foreground: "#fcfcfc" + + dim_foreground: "#eff0f1" + bright_foreground: "#ffffff" + dim_background: "#31363b" + bright_background: "#000000" + + # Normal colors + normal: + black: "#232627" + red: "#ed1515" + green: "#11d116" + yellow: "#f67400" + blue: "#1d99f3" + magenta: "#9b59b6" + cyan: "#1abc9c" + white: "#fcfcfc" + + # Bright colors + bright: + black: "#7f8c8d" + red: "#c0392b" + green: "#1cdc9a" + yellow: "#fdbc4b" + blue: "#3daee9" + magenta: "#8e44ad" + cyan: "#16a085" + white: "#ffffff" + + # Dim colors + dim: + black: "#31363b" + red: "#783228" + green: "#17a262" + yellow: "#b65619" + blue: "#1b668f" + magenta: "#614a73" + cyan: "#186c60" + white: "#63686d" diff --git a/playbooks/roles/shell/templates/alacritty/colors/campbell.yml b/playbooks/roles/shell/templates/alacritty/colors/campbell.yml new file mode 100644 index 0000000..037475d --- /dev/null +++ b/playbooks/roles/shell/templates/alacritty/colors/campbell.yml @@ -0,0 +1,28 @@ +# Campbell (Windows 10 default) +colors: + # Default colors + primary: + background: "#0c0c0c" + foreground: "#cccccc" + + # Normal colors + normal: + black: "#0c0c0c" + red: "#c50f1f" + green: "#13a10e" + yellow: "#c19c00" + blue: "#0037da" + magenta: "#881798" + cyan: "#3a96dd" + white: "#cccccc" + + # Bright colors + bright: + black: "#767676" + red: "#e74856" + green: "#16c60c" + yellow: "#f9f1a5" + blue: "#3b78ff" + magenta: "#b4009e" + cyan: "#61d6d6" + white: "#f2f2f2" diff --git a/playbooks/roles/shell/templates/alacritty/colors/rose-pine-dawn.yml b/playbooks/roles/shell/templates/alacritty/colors/rose-pine-dawn.yml new file mode 100644 index 0000000..e8f47bf --- /dev/null +++ b/playbooks/roles/shell/templates/alacritty/colors/rose-pine-dawn.yml @@ -0,0 +1,34 @@ +colors: + primary: + background: "0xfffaf3" + foreground: "0x575279" + cursor: + text: "0xfaf4ed" + cursor: "0xECC5BF" + vi_mode_cursor: + text: "0xfaf4ed" + cursor: "0xECC5BF" + line_indicator: + foreground: None + background: None + selection: + text: CellForeground + background: "0xF5E2DF" + normal: + black: "0x6e6a86" + red: "0xb4637a" + green: "0x56949f" + yellow: "0xea9d34" + blue: "0x286983" + magenta: "0x907aa9" + cyan: "0xd7827e" + white: "0x575279" + bright: + black: "0x6e6a86" + red: "0xeb6f92" + green: "0x9ccfd8" + yellow: "0xf6c177" + blue: "0x31748f" + magenta: "0xc4a7e7" + cyan: "0xebbcba" + white: "0xe0def4" diff --git a/playbooks/roles/shell/templates/alacritty/colors/rose-pine-moon.yml b/playbooks/roles/shell/templates/alacritty/colors/rose-pine-moon.yml new file mode 100644 index 0000000..f53a1da --- /dev/null +++ b/playbooks/roles/shell/templates/alacritty/colors/rose-pine-moon.yml @@ -0,0 +1,34 @@ +colors: + primary: + background: "0x232136" + foreground: "0xe0def4" + cursor: + text: "0x232136" + cursor: "0x825B65" + vi_mode_cursor: + text: "0x191724" + cursor: "0x825B65" + line_indicator: + foreground: None + background: None + selection: + text: CellForeground + background: "0x312E45" + normal: + black: "0x817c9c" + red: "0xeb6f92" + green: "0x9ccfd8" + yellow: "0xf6c177" + blue: "0x3e8fb0" + magenta: "0xc4a7e7" + cyan: "0xea9a97" + white: "0xe0def4" + bright: + black: "0x6e6a86" + red: "0xeb6f92" + green: "0x9ccfd8" + yellow: "0xf6c177" + blue: "0x31748f" + magenta: "0xc4a7e7" + cyan: "0xebbcba" + white: "0xe0def4" diff --git a/playbooks/roles/shell/templates/alacritty/colors/rose-pine.yml b/playbooks/roles/shell/templates/alacritty/colors/rose-pine.yml new file mode 100644 index 0000000..81ad4b5 --- /dev/null +++ b/playbooks/roles/shell/templates/alacritty/colors/rose-pine.yml @@ -0,0 +1,34 @@ +colors: + primary: + background: "0x191724" + foreground: "0xe0def4" + cursor: + text: "0x191724" + cursor: "0x796268" + vi_mode_cursor: + text: "0x191724" + cursor: "0x796268" + line_indicator: + foreground: None + background: None + selection: + text: CellForeground + background: "0x2A2738" + normal: + black: "0x6e6a86" + red: "0xeb6f92" + green: "0x9ccfd8" + yellow: "0xf6c177" + blue: "0x31748f" + magenta: "0xc4a7e7" + cyan: "0xebbcba" + white: "0xe0def4" + bright: + black: "0x6e6a86" + red: "0xeb6f92" + green: "0x9ccfd8" + yellow: "0xf6c177" + blue: "0x31748f" + magenta: "0xc4a7e7" + cyan: "0xebbcba" + white: "0xe0def4" diff --git a/playbooks/roles/shell/templates/alacritty/colors/tomorrow_day.yml b/playbooks/roles/shell/templates/alacritty/colors/tomorrow_day.yml new file mode 100644 index 0000000..d5756f2 --- /dev/null +++ b/playbooks/roles/shell/templates/alacritty/colors/tomorrow_day.yml @@ -0,0 +1,29 @@ +# Colors (Tomorrow) +colors: + bright: + black: "#000000" + blue: "#4271ae" + cyan: "#3e999f" + green: "#718c00" + magenta: "#8959a8" + red: "#c82829" + white: "#ffffff" + yellow: "#eab700" + cursor: + cursor: "#4d4d4c" + text: "#ffffff" + normal: + black: "#000000" + blue: "#4271ae" + cyan: "#3e999f" + green: "#718c00" + magenta: "#8959a8" + red: "#c82829" + white: "#ffffff" + yellow: "#eab700" + primary: + background: "#ffffff" + foreground: "#4d4d4c" + selection: + background: "#d6d6d6" + text: "#4d4d4c" diff --git a/playbooks/roles/shell/templates/alacritty/colors/tomorrow_night.yml b/playbooks/roles/shell/templates/alacritty/colors/tomorrow_night.yml new file mode 100644 index 0000000..8e9c016 --- /dev/null +++ b/playbooks/roles/shell/templates/alacritty/colors/tomorrow_night.yml @@ -0,0 +1,33 @@ +# Colors (Tomorrow Night) +colors: + # Default colors + primary: + background: "#1d1f21" + foreground: "#c5c8c6" + + # Colors the cursor will use if `custom_cursor_colors` is true + cursor: + text: "#1d1f21" + cursor: "#ffffff" + + # Normal colors + normal: + black: "#1d1f21" + red: "#cc6666" + green: "#b5bd68" + yellow: "#e6c547" + blue: "#81a2be" + magenta: "#b294bb" + cyan: "#70c0ba" + white: "#373b41" + + # Bright colors + bright: + black: "#666666" + red: "#ff3334" + green: "#9ec400" + yellow: "#f0c674" + blue: "#81a2be" + magenta: "#b77ee0" + cyan: "#54ced6" + white: "#282a2e" diff --git a/playbooks/roles/shell/templates/alacritty/colors/tomorrow_night_bright.yml b/playbooks/roles/shell/templates/alacritty/colors/tomorrow_night_bright.yml new file mode 100644 index 0000000..a22bf3f --- /dev/null +++ b/playbooks/roles/shell/templates/alacritty/colors/tomorrow_night_bright.yml @@ -0,0 +1,28 @@ +# Colors (Tomorrow Night Bright) +colors: + # Default colors + primary: + background: "#000000" + foreground: "#eaeaea" + + # Normal colors + normal: + black: "#000000" + red: "#d54e53" + green: "#b9ca4a" + yellow: "#e6c547" + blue: "#7aa6da" + magenta: "#c397d8" + cyan: "#70c0ba" + white: "#424242" + + # Bright colors + bright: + black: "#666666" + red: "#ff3334" + green: "#9ec400" + yellow: "#e7c547" + blue: "#7aa6da" + magenta: "#b77ee0" + cyan: "#54ced6" + white: "#2a2a2a"