Skip to content

Commit

Permalink
fix(hls): adjust border colors for better contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
tanvirtin committed Jan 24, 2025
1 parent 29f1b0a commit 45d8dfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/vgit/settings/hls.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@ return Config({
end,
GitAppBar = function()
return {
bg = Color({ name = 'StatusLine', attribute = 'bg' }):darken(35):get(),
bg = Color({ name = 'StatusLine', attribute = 'bg' }):darken(90):get(),
fg = Color({ name = 'StatusLine', attribute = 'fg' }):get(),
override = false,
}
end,
GitHeader = function()
return {
bg = Color({ name = 'StatusLine', attribute = 'bg' }):darken(35):get(),
bg = Color({ name = 'StatusLine', attribute = 'bg' }):darken(90):get(),
fg = Color({ name = 'StatusLine', attribute = 'fg' }):get(),
override = false,
}
end,
GitFooter = function()
return {
bg = Color({ name = 'StatusLine', attribute = 'bg' }):darken(35):get(),
bg = Color({ name = 'StatusLine', attribute = 'bg' }):darken(90):get(),
fg = Color({ name = 'StatusLine', attribute = 'fg' }):get(),
override = false,
}
Expand Down

0 comments on commit 45d8dfd

Please sign in to comment.