Skip to content

Commit e3a3a2c

Browse files
committed
make
1 parent d835fd5 commit e3a3a2c

File tree

4 files changed

+58
-4
lines changed

4 files changed

+58
-4
lines changed

colors/melange.vim

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ highlight Error guifg=NONE guibg=#7D2A2F guisp=NONE gui=NONE
2929
highlight ErrorMsg guifg=NONE guibg=#7D2A2F guisp=NONE gui=NONE
3030
highlight Folded guifg=#A38D78 guibg=#352F2A guisp=NONE gui=NONE
3131
highlight Function guifg=#EBC06D guibg=NONE guisp=NONE gui=NONE
32+
highlight GitSignsAdd guifg=#2A2520 guibg=#1F3521 guisp=NONE gui=reverse
33+
highlight GitSignsChange guifg=#2A2520 guibg=#462445 guisp=NONE gui=reverse
34+
highlight GitSignsCurrentLineBlame guifg=#2A2520 guibg=#243146 guisp=NONE gui=reverse
35+
highlight GitSignsDelete guifg=#2A2520 guibg=#7D2A2F guisp=NONE gui=reverse
3236
highlight HelpHyperTextJump guifg=#E49B5D guibg=NONE guisp=NONE gui=NONE
3337
highlight Identifier guifg=#ECE1D7 guibg=NONE guisp=NONE gui=NONE
3438
highlight Ignore guifg=#A38D78 guibg=NONE guisp=NONE gui=NONE
@@ -99,6 +103,9 @@ highlight! link PmenuSbar Pmenu
99103
highlight! link PmenuThumb PmenuSel
100104
highlight! link Question MoreMsg
101105
highlight! link SignColumn LineNr
106+
highlight! link SignifySignAdd GitSignsAdd
107+
highlight! link SignifySignChange GitSignsChange
108+
highlight! link SignifySignDelete GitSignsDelete
102109
highlight! link SpecialKey Whitespace
103110
highlight! link StatusLine NormalFloat
104111
highlight! link TSConstMacro Constant
@@ -154,6 +161,10 @@ highlight Error guifg=NONE guibg=#E0BFBB guisp=NONE gui=NONE
154161
highlight ErrorMsg guifg=NONE guibg=#E0BFBB guisp=NONE gui=NONE
155162
highlight Folded guifg=#A38D78 guibg=#E9E1DB guisp=NONE gui=NONE
156163
highlight Function guifg=#C29830 guibg=NONE guisp=NONE gui=NONE
164+
highlight GitSignsAdd guifg=#F4F0ED guibg=#C6ECC8 guisp=NONE gui=reverse
165+
highlight GitSignsChange guifg=#F4F0ED guibg=#EBDFEA guisp=NONE gui=reverse
166+
highlight GitSignsCurrentLineBlame guifg=#F4F0ED guibg=#DFE3EB guisp=NONE gui=reverse
167+
highlight GitSignsDelete guifg=#F4F0ED guibg=#E0BFBB guisp=NONE gui=reverse
157168
highlight HelpHyperTextJump guifg=#CC7F2B guibg=NONE guisp=NONE gui=NONE
158169
highlight Identifier guifg=#6B5C4D guibg=NONE guisp=NONE gui=NONE
159170
highlight Ignore guifg=#A38D78 guibg=NONE guisp=NONE gui=NONE
@@ -224,6 +235,9 @@ highlight! link PmenuSbar Pmenu
224235
highlight! link PmenuThumb PmenuSel
225236
highlight! link Question MoreMsg
226237
highlight! link SignColumn LineNr
238+
highlight! link SignifySignAdd GitSignsAdd
239+
highlight! link SignifySignChange GitSignsChange
240+
highlight! link SignifySignDelete GitSignsDelete
227241
highlight! link SpecialKey Whitespace
228242
highlight! link StatusLine NormalFloat
229243
highlight! link TSConstMacro Constant

lua/melange/build.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,17 +76,17 @@ local function build(terminals)
7676
for term, attrs in pairs(terminals) do
7777
fwrite(
7878
interpolate(attrs.template, map),
79-
string.format("/term/%s/melange_%s.%s", term, l, attrs.ext)
79+
string.format("/term/%s/melange_%s%s", term, l, attrs.ext)
8080
)
8181
end
8282
end
8383
end
8484

8585
local terminals = {
86-
alacritty = {ext="yml"},
87-
kitty = {ext="conf"},
86+
alacritty = {ext=".yml"},
87+
kitty = {ext=".conf"},
8888
termite = {ext=""},
89-
wezterm = {ext="toml"},
89+
wezterm = {ext=".toml"},
9090
}
9191

9292
terminals.alacritty.template = [[

term/termite/melange_dark

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[colors]
2+
foreground = #ECE1D7
3+
background = #2A2520
4+
color0 = #352F2A
5+
color1 = #B65C60
6+
color2 = #78997A
7+
color3 = #EBC06D
8+
color4 = #9AACCE
9+
color5 = #B380B0
10+
color6 = #86A3A3
11+
color7 = #A38D78
12+
color8 = #4D453E
13+
color9 = #F17C64
14+
color10 = #99D59D
15+
color11 = #EBC06D
16+
color12 = #9AACCE
17+
color13 = #CE9BCB
18+
color14 = #88B3B2
19+
color15 = #C1A78E
20+
highlight = nil

term/termite/melange_light

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[colors]
2+
foreground = #6B5C4D
3+
background = #F4F0ED
4+
color0 = #E9E1DB
5+
color1 = #D7898C
6+
color2 = #83B887
7+
color3 = #C29830
8+
color4 = #485F84
9+
color5 = #BE79BB
10+
color6 = #729893
11+
color7 = #A38D78
12+
color8 = #DED2C8
13+
color9 = #C65333
14+
color10 = #659E69
15+
color11 = #C29830
16+
color12 = #485F84
17+
color13 = #854882
18+
color14 = #436460
19+
color15 = #867462
20+
highlight = nil

0 commit comments

Comments
 (0)