Skip to content

Commit

Permalink
fix(colors): update the high-contrast variant
Browse files Browse the repository at this point in the history
  • Loading branch information
pauchiner committed Feb 14, 2024
1 parent 7ac07a3 commit 018b963
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lua/pastelnight/colors.lua
Original file line number Diff line number Diff line change
Expand Up @@ -88,49 +88,49 @@ M.highContrast = function()

yellow50 = hsl(039, 100, 86),
yellow100 = hsl(039, 100, 80),
yellow200 = hsl(039, 100, 70),
yellow200 = hsl(039, 100, 67),
yellow300 = hsl(039, 067, 61),
yellow400 = hsl(039, 047, 52),

orange50 = hsl(019, 100, 86),
orange100 = hsl(019, 100, 76),
orange200 = hsl(019, 100, 65),
orange200 = hsl(019, 100, 62),
orange300 = hsl(019, 070, 56),
orange400 = hsl(019, 055, 48),

red50 = hsl(000, 100, 86),
red100 = hsl(000, 100, 76),
red200 = hsl(000, 100, 65),
red200 = hsl(000, 100, 62),
red300 = hsl(000, 070, 56),
red400 = hsl(000, 055, 48),

pink50 = hsl(318, 100, 92),
pink100 = hsl(318, 100, 86),
pink200 = hsl(318, 100, 80),
pink200 = hsl(318, 100, 77),
pink300 = hsl(318, 058, 69),
pink400 = hsl(318, 038, 59),

purple50 = hsl(272, 053, 88),
purple100 = hsl(272, 051, 79),
purple200 = hsl(272, 050, 70),
purple200 = hsl(272, 050, 67),
purple300 = hsl(272, 033, 61),
purple400 = hsl(272, 024, 52),

blue50 = hsl(221, 100, 90),
blue100 = hsl(221, 100, 83),
blue200 = hsl(221, 100, 75),
blue200 = hsl(221, 100, 72),
blue300 = hsl(221, 063, 65),
blue400 = hsl(221, 042, 56),

sky50 = hsl(191, 100, 91),
sky100 = hsl(191, 100, 84),
sky200 = hsl(191, 100, 75),
sky200 = hsl(191, 100, 72),
sky300 = hsl(191, 063, 65),
sky400 = hsl(191, 043, 55),

green50 = hsl(137, 100, 90),
green100 = hsl(137, 100, 81),
green200 = hsl(137, 100, 70),
green200 = hsl(137, 100, 67),
green300 = hsl(137, 067, 61),
green400 = hsl(137, 047, 52),
}
Expand Down

0 comments on commit 018b963

Please sign in to comment.