summaryrefslogtreecommitdiffstatshomepage
path: root/alacritty/.config
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-05-05 17:12:08 -0500
committerToby Vincent <tobyv13@gmail.com>2022-05-05 17:12:08 -0500
commit46f4a60f42990244dd9a9c49abe568112c34e0cb (patch)
treebd85ea199fdeeb0a36b5b17baa8b9c894f7fb1b2 /alacritty/.config
parent28b39ae5b583a40624953b74c960b06b39f076c9 (diff)
feat: simplify configs and improve theme
Diffstat (limited to 'alacritty/.config')
-rw-r--r--alacritty/.config/alacritty/colors.yml121
1 files changed, 76 insertions, 45 deletions
diff --git a/alacritty/.config/alacritty/colors.yml b/alacritty/.config/alacritty/colors.yml
index dbfcd0e..044e139 100644
--- a/alacritty/.config/alacritty/colors.yml
+++ b/alacritty/.config/alacritty/colors.yml
@@ -1,60 +1,91 @@
schemes:
- codelight: &light
+ vscode_light: &vscode_light
primary:
- background: '#ffffff'
- foreground: '#1e1e1e'
+ background: "#ffffff"
+ foreground: "#1e1e1e"
cursor:
- text: '#d4d4d4'
- cursor: '#d4d4d4'
+ text: "#d4d4d4"
+ cursor: "#d4d4d4"
normal:
- black: '#1e1e1e'
- red: '#c72e0f'
- green: '#009000'
- yellow: '#795e25'
- blue: '#007acc'
- magenta: '#af00db'
- cyan: '#56b6c2'
- white: '#d4d4d4'
+ black: "#1e1e1e"
+ red: "#c72e0f"
+ green: "#009000"
+ yellow: "#795e25"
+ blue: "#007acc"
+ magenta: "#af00db"
+ cyan: "#56b6c2"
+ white: "#d4d4d4"
bright:
- black: '#1e1e1e'
- red: '#c72e0f'
- green: '#009000'
- yellow: '#795e25'
- blue: '#007acc'
- magenta: '#af00db'
- cyan: '#56b6c2'
- white: '#d4d4d4'
-
- codedark: &dark
+ black: "#1e1e1e"
+ red: "#c72e0f"
+ green: "#009000"
+ yellow: "#795e25"
+ blue: "#007acc"
+ magenta: "#af00db"
+ cyan: "#56b6c2"
+ white: "#d4d4d4"
+
+ vscode_dark: &vscode_dark
primary:
- background: '#1e1e1e'
- foreground: '#d4d4d4'
+ background: "#1e1e1e"
+ foreground: "#d4d4d4"
cursor:
- text: '#d4d4d4'
- cursor: '#d4d4d4'
+ text: "#d4d4d4"
+ cursor: "#d4d4d4"
normal:
- black: '#1e1e1e'
- red: '#f44747'
- green: '#608b4e'
- yellow: '#dcdcaa'
- blue: '#569cd6'
- magenta: '#c678dd'
- cyan: '#56b6c2'
- white: '#d4d4d4'
+ black: "#1e1e1e"
+ red: "#f44747"
+ green: "#608b4e"
+ yellow: "#dcdcaa"
+ blue: "#569cd6"
+ magenta: "#c678dd"
+ cyan: "#56b6c2"
+ white: "#d4d4d4"
bright:
- black: '#545454'
- red: '#f44747'
- green: '#608b4e'
- yellow: '#dcdcaa'
- blue: '#569cd6'
- magenta: '#c678dd'
- cyan: '#56b6c2'
- white: '#d4d4d4'
-
-colors: *dark \ No newline at end of file
+ black: "#545454"
+ red: "#f44747"
+ green: "#608b4e"
+ yellow: "#dcdcaa"
+ blue: "#569cd6"
+ magenta: "#c678dd"
+ cyan: "#56b6c2"
+ white: "#d4d4d4"
+
+ gruvbox: &gruvbox # Default colors
+ primary:
+ background: "0x1d2021"
+ foreground: "0xd4be98"
+
+ # Normal colors
+ normal:
+ black: "0x544b3c"
+ red: "0xea6962"
+ green: "0xa9b665"
+ yellow: "0xd8a657"
+ blue: "0x7daea3"
+ magenta: "0xd3869b"
+ aqua: "0x89b482"
+ white: "0xd4be98"
+
+ # Bright colors
+ bright:
+ black: "0x4f4738"
+ red: "0xea6962"
+ green: "0xa9b665"
+ yellow: "0xd8a657"
+ blue: "0x7daea3"
+ magenta: "0xd3869b"
+ aqua: "0x89b482"
+ white: "0xd4be98"
+
+ indexed_colors:
+ - { index: 16, color: "0xe78a4e" }
+ - { index: 17, color: "0xc14a4a" }
+
+colors: *gruvbox