File tree Expand file tree Collapse file tree 5 files changed +91
-2
lines changed Expand file tree Collapse file tree 5 files changed +91
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ mods = "Shift"
119
119
120
120
[general ]
121
121
import = [
122
- " ~/.config/alacritty/gruv .toml"
122
+ " ~/.config/alacritty/gruvbox_material_medium_dark .toml"
123
123
]
124
124
125
125
[terminal ]
Original file line number Diff line number Diff line change
1
+ # Colors (Gruvbox Material Hard Dark)
2
+
3
+ # Default colors
4
+ [colors .primary ]
5
+ background = ' #1d2021'
6
+ foreground = ' #d4be98'
7
+
8
+ # Normal colors
9
+ [colors .normal ]
10
+ black = ' #32302f'
11
+ red = ' #ea6962'
12
+ green = ' #a9b665'
13
+ yellow = ' #d8a657'
14
+ blue = ' #7daea3'
15
+ magenta = ' #d3869b'
16
+ cyan = ' #89b482'
17
+ white = ' #d4be98'
18
+
19
+ # Bright colors (same as normal colors)
20
+ [colors .bright ]
21
+ black = ' #32302f'
22
+ red = ' #ea6962'
23
+ green = ' #a9b665'
24
+ yellow = ' #d8a657'
25
+ blue = ' #7daea3'
26
+ magenta = ' #d3869b'
27
+ cyan = ' #89b482'
28
+ white = ' #d4be98'
Original file line number Diff line number Diff line change
1
+ # Colors (Gruvbox Material Medium Dark)
2
+
3
+ # Default colors
4
+ [colors .primary ]
5
+ background = ' #282828'
6
+ foreground = ' #d4be98'
7
+
8
+ # Normal colors
9
+ [colors .normal ]
10
+ black = ' #3c3836'
11
+ red = ' #ea6962'
12
+ green = ' #a9b665'
13
+ yellow = ' #d8a657'
14
+ blue = ' #7daea3'
15
+ magenta = ' #d3869b'
16
+ cyan = ' #89b482'
17
+ white = ' #d4be98'
18
+
19
+ # Bright colors (same as normal colors)
20
+ [colors .bright ]
21
+ black = ' #3c3836'
22
+ red = ' #ea6962'
23
+ green = ' #a9b665'
24
+ yellow = ' #d8a657'
25
+ blue = ' #7daea3'
26
+ magenta = ' #d3869b'
27
+ cyan = ' #89b482'
28
+ white = ' #d4be98'
Original file line number Diff line number Diff line change
1
+ # From iTerm2 Pastel Dark theme
2
+
3
+ # Default colors
4
+ [colors .primary ]
5
+ background = ' #000000'
6
+ foreground = ' #C7C7C7'
7
+
8
+ # Cursor colors
9
+ [colors .cursor ]
10
+ text = ' #FFFEFF'
11
+ cursor = ' #FFB472'
12
+
13
+ # Normal colors
14
+ [colors .normal ]
15
+ black = ' #616161'
16
+ red = ' #FF8272'
17
+ green = ' #B4FA72'
18
+ yellow = ' #FEFDC2'
19
+ blue = ' #A5D5FE'
20
+ magenta = ' #FF8FFD'
21
+ cyan = ' #D0D1FE'
22
+ white = ' #F1F1F1'
23
+
24
+ # Bright colors
25
+ [colors .bright ]
26
+ black = ' #8E8E8E'
27
+ red = ' #FFC4BD'
28
+ green = ' #D6FCB9'
29
+ yellow = ' #FEFDD5'
30
+ blue = ' #C1E3FE'
31
+ magenta = ' #FFB1FE'
32
+ cyan = ' #E5E6FE'
33
+ white = ' #FFFEFF'
Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ return {
17
17
lazy = false ,
18
18
priority = 1000 ,
19
19
config = function ()
20
- vim .cmd .colorscheme (" base16-gruvbox-material-dark-hard " )
20
+ vim .cmd .colorscheme (" base16-gruvbox-material-dark-medium " )
21
21
end ,
22
22
}
You can’t perform that action at this time.
0 commit comments