aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrumeet <17158086+Trumeet@users.noreply.github.com>2020-01-23 20:18:40 -0800
committerTrumeet <17158086+Trumeet@users.noreply.github.com>2020-01-23 20:18:40 -0800
commit548f31feb37be753cc193374ba4350d32cc70971 (patch)
tree262dd6b24813196e3785e7825027b9fd8cb71d18
parent51d478da017c7c42ea5ec139d6942bee63bb57ab (diff)
downloaddotfiles-548f31feb37be753cc193374ba4350d32cc70971.tar
dotfiles-548f31feb37be753cc193374ba4350d32cc70971.tar.gz
dotfiles-548f31feb37be753cc193374ba4350d32cc70971.tar.bz2
dotfiles-548f31feb37be753cc193374ba4350d32cc70971.zip
feat(alacritty): add alacritty configs
-rw-r--r--alacritty/.config/alacritty/alacritty.yml71
1 files changed, 71 insertions, 0 deletions
diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml
new file mode 100644
index 0000000..9ed0254
--- /dev/null
+++ b/alacritty/.config/alacritty/alacritty.yml
@@ -0,0 +1,71 @@
+font:
+ size: 18
+schemes:
+ solarized_light: &light
+ # Default colors
+ primary:
+ background: '0xfdf6e3' # base3
+ foreground: '0x657b83' # base00
+
+ # Cursor colors
+ cursor:
+ text: '0xfdf6e3' # base3
+ cursor: '0x657b83' # base00
+
+ # Normal colors
+ normal:
+ black: '0x073642' # base02
+ red: '0xdc322f' # red
+ green: '0x859900' # green
+ yellow: '0xb58900' # yellow
+ blue: '0x268bd2' # blue
+ magenta: '0xd33682' # magenta
+ cyan: '0x2aa198' # cyan
+ white: '0xeee8d5' # base2
+
+ # Bright colors
+ bright:
+ black: '0x002b36' # base03
+ red: '0xcb4b16' # orange
+ green: '0x586e75' # base01
+ yellow: '0x657b83' # base00
+ blue: '0x839496' # base0
+ magenta: '0x6c71c4' # violet
+ cyan: '0x93a1a1' # base1
+ white: '0xfdf6e3' # base3
+
+ solarized_light: &dark
+ # Default colors
+ primary:
+ background: '0x002b36' # base03
+ foreground: '0x839496' # base0
+
+ # Cursor colors
+ cursor:
+ text: '0x002b36' # base03
+ cursor: '0x839496' # base0
+
+ # Normal colors
+ normal:
+ black: '0x073642' # base02
+ red: '0xdc322f' # red
+ green: '0x859900' # green
+ yellow: '0xb58900' # yellow
+ blue: '0x268bd2' # blue
+ magenta: '0xd33682' # magenta
+ cyan: '0x2aa198' # cyan
+ white: '0xeee8d5' # base2
+
+ # Bright colors
+ bright:
+ black: '0x002b36' # base03
+ red: '0xcb4b16' # orange
+ green: '0x586e75' # base01
+ yellow: '0x657b83' # base00
+ blue: '0x839496' # base0
+ magenta: '0x6c71c4' # violet
+ cyan: '0x93a1a1' # base1
+ white: '0xfdf6e3' # base3
+
+
+colors: *dark