dotfiles

Cross platform dotfiles for linux, mac and windows

commit 25854efb632123ae488b7842c2e2230e60661bc8
parent db1753792e33053229b4a9eb5bcc9bbb3a877027
Author: Bharatvaj <bharatvaj@yahoo.com>
Date: Wed, 15 Dec 2021 00:15:37 +0530

Adapt Hyper for alacritty
2 files changed, 33 insertions(+), 2 deletions(-)
M
.config/alacritty/alacritty.yml
|
4
++--
A
.config/alacritty/theme.yml
|
31
+++++++++++++++++++++++++++++++
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
@@ -1,3 +1,3 @@
-font:
-  size: 14
+import:
+  - ~/.config/alacritty/theme.yml
 
diff --git a/.config/alacritty/theme.yml b/.config/alacritty/theme.yml
@@ -0,0 +1,31 @@
+# Colors (Hyper)
+colors:
+  # Default colors
+  primary:
+    background: '0x000000'
+    foreground: '0xffffff'
+  cursor:
+    text: '0xF81CE5'
+    cursor: '0xffffff'
+
+  # Normal colors
+  normal:
+    black:   '0x000000'
+    red:     '0xfe0100'
+    green:   '0x33ff00'
+    yellow:  '0xfeff00'
+    blue:    '0x0066ff'
+    magenta: '0xcc00ff'
+    cyan:    '0x00ffff'
+    white:   '0xd0d0d0'
+
+  # Bright colors
+  bright:
+    black:   '0x808080'
+    red:     '0xfe0100'
+    green:   '0x33ff00'
+    yellow:  '0xfeff00'
+    blue:    '0x0066ff'
+    magenta: '0xcc00ff'
+    cyan:    '0x00ffff'
+    white:   '0xFFFFFF'