Skip to content

Commit

Permalink
feat: improve some colors
Browse files Browse the repository at this point in the history
  • Loading branch information
cvigilv committed Jun 12, 2024
1 parent fae734b commit d45f05c
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions colors/patana.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,12 @@ local colors = {
green_pastel = "#B3D8AB",
green_light = "#7BB662",
green_dark = "#589C48",
orange_pastel = "#F9BA8A",
orange_light = "#fbb149",

orange_darker = "#c07204",
orange_dark = "#F58024",
orange_light = "#fbb149",
orange_pastel = "#fdd193",

purple_pastel = "#D2A7DC",
purple_light = "#994fb2",
purple_dark = "#733381",
Expand All @@ -64,18 +67,18 @@ if vim.o.background == "dark" then
comment = colors.grays["450"],
oob = colors.grays["000"],

visual = colors.orange_pastel,
literal = colors.purple_light,
visual = colors.green_dark,
literal = colors.orange_light,

add = colors.green_light,
change = colors.orange_light,
delete = colors.purple_light,
add = colors.green_dark,
change = colors.orange_darker,
delete = colors.purple_dark,

error = colors.purple_light,
warn = colors.orange_light,
hint = colors.green_light,
error = colors.purple_pastel,
warn = colors.orange_pastel,
hint = colors.green_pastel,
info = colors.grays["850"],
ok = colors.norm_subtle,
ok = colors.grays["850"],
}
else
palette = {
Expand All @@ -90,7 +93,7 @@ else
comment = colors.grays["450"],
oob = colors.grays["900"],

visual = colors.orange_light,
visual = colors.orange_pastel,
literal = colors.green_dark,

add = colors.green_pastel,
Expand Down

0 comments on commit d45f05c

Please sign in to comment.