summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraktersnurra <grydholm@kth.se>2021-02-27 22:50:41 +0100
committeraktersnurra <grydholm@kth.se>2021-02-27 22:50:41 +0100
commitd06eeed91ccac9dc16a819500d3ca0beb1fd7bf8 (patch)
tree0eb6b0413365ca8ddb2f5e78279110349912bb3d
parentd21305d0c51bcdb9f1115eb7299def1a30055dcf (diff)
Add Base16 color theme to alacritty
-rw-r--r--.config/alacritty/alacritty.yml71
1 files changed, 28 insertions, 43 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
index 2e1c180..79986e6 100644
--- a/.config/alacritty/alacritty.yml
+++ b/.config/alacritty/alacritty.yml
@@ -2,54 +2,39 @@
# Set this if using macOS
alt_send_esc: false
+# Colors (Base16 Default Dark)
colors:
+ # Default colors
primary:
- background: '#2e3440'
- foreground: '#d8dee9'
- dim_foreground: '#a5abb6'
+ background: '#181818'
+ foreground: '#d8d8d8'
+
+ # Colors the cursor will use if `custom_cursor_colors` is true
cursor:
- text: '#2e3440'
- cursor: '#d8dee9'
- vi_mode_cursor:
- text: '#2e3440'
- cursor: '#d8dee9'
- selection:
- text: CellForeground
- background: '#4c566a'
- search:
- matches:
- foreground: CellBackground
- background: '#88c0d0'
- bar:
- background: '#434c5e'
- foreground: '#d8dee9'
+ text: '#d8d8d8'
+ cursor: '#d8d8d8'
+
+ # Normal colors
normal:
- black: '#3b4252'
- red: '#bf616a'
- green: '#a3be8c'
- yellow: '#ebcb8b'
- blue: '#81a1c1'
- magenta: '#b48ead'
- cyan: '#88c0d0'
- white: '#e5e9f0'
+ black: '#181818'
+ red: '#ab4642'
+ green: '#a1b56c'
+ yellow: '#f7ca88'
+ blue: '#7cafc2'
+ magenta: '#ba8baf'
+ cyan: '#86c1b9'
+ white: '#d8d8d8'
+
+ # Bright colors
bright:
- black: '#4c566a'
- red: '#bf616a'
- green: '#a3be8c'
- yellow: '#ebcb8b'
- blue: '#81a1c1'
- magenta: '#b48ead'
- cyan: '#8fbcbb'
- white: '#eceff4'
- dim:
- black: '#373e4d'
- red: '#94545d'
- green: '#809575'
- yellow: '#b29e75'
- blue: '#68809a'
- magenta: '#8c738c'
- cyan: '#6d96a5'
- white: '#aeb3bb'
+ black: '#585858'
+ red: '#ab4642'
+ green: '#a1b56c'
+ yellow: '#f7ca88'
+ blue: '#7cafc2'
+ magenta: '#ba8baf'
+ cyan: '#86c1b9'
+ white: '#f8f8f8'
background_opacity: 1.0