Skip to content

Commit 3ae662c

Browse files
authored
Merge pull request #7 from maro114510/ok_wezterm
2 parents e1bd82b + ba1c8d9 commit 3ae662c

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

.config/wezterm/config/color.lua

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
11
local wezterm = require 'wezterm';
22

3-
local color_default_fg_light = wezterm.color.parse("#cacaca")
3+
-- local color_default_fg_light = wezterm.color.parse("#cacaca")
44
local color_default_fg_dark = wezterm.color.parse("#303030")
55

66

77
return {
8-
VERIDIAN = {
8+
--[[ VERIDIAN = {
99
bg = wezterm.color.parse("#4D8060"),
1010
fg = color_default_fg_light
11-
},
12-
PAYNE = {
11+
}, ]]
12+
--[[ PAYNE = {
1313
bg = wezterm.color.parse("#385F71"),
1414
fg = color_default_fg_light
15-
},
16-
INDIGO = {
15+
}, ]]
16+
--[[ INDIGO = {
1717
bg = wezterm.color.parse("#7C77B9"),
1818
fg = color_default_fg_light
19-
},
19+
}, ]]
2020
CAROLINA = {
2121
bg = wezterm.color.parse("#8FBFE0"),
2222
fg = color_default_fg_dark
2323
},
24-
FLAME = {
24+
--[[ FLAME = {
2525
bg = wezterm.color.parse("#D36135"),
2626
fg = color_default_fg_dark
27-
},
28-
JET = {
27+
}, ]]
28+
--[[ JET = {
2929
bg = wezterm.color.parse("#282B28"),
3030
fg = color_default_fg_light
31-
},
32-
TAUPE = {
31+
}, ]]
32+
--[[ TAUPE = {
3333
bg = wezterm.color.parse("#785964"),
3434
fg = color_default_fg_light
35-
},
36-
ECRU = {
35+
}, ]]
36+
--[[ ECRU = {
3737
bg = wezterm.color.parse("#C6AE82"),
3838
fg = color_default_fg_dark
39-
},
40-
VIOLET = {
39+
}, ]]
40+
--[[ VIOLET = {
4141
bg = wezterm.color.parse("#685F74"),
4242
fg = color_default_fg_light
43-
},
44-
VERDIGRIS = {
43+
}, ]]
44+
--[[ VERDIGRIS = {
4545
bg = wezterm.color.parse("#28AFB0"),
4646
fg = color_default_fg_light
47-
}
47+
} ]]
4848
}

.config/wezterm/config/tabline.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ local color = (function()
1010
local COLOR = require "config.color"
1111

1212
local coolors = {
13-
COLOR.VERIDIAN,
13+
--[[ COLOR.VERIDIAN,
1414
COLOR.PAYNE,
15-
COLOR.INDIGO,
15+
COLOR.INDIGO, ]]
1616
COLOR.CAROLINA,
17-
COLOR.FLAME,
17+
--[[ COLOR.FLAME,
1818
COLOR.JET,
1919
COLOR.TAUPE,
2020
COLOR.ECRU,
2121
COLOR.VIOLET,
22-
COLOR.VERDIGRIS
22+
COLOR.VERDIGRIS ]]
2323
}
2424

2525
return coolors[math.random(#coolors)]

0 commit comments

Comments
 (0)