Skip to content

Commit

Permalink
fix(colors): update color values for better contrast
Browse files Browse the repository at this point in the history
Updated the color values in aurora.lua to improve the overall contrast
and readability. Adjusted light_gray, diff_change_bg, diff_text_bg,
active, float, highlight, highlight_dark, and selection colors to
ensure a more consistent and visually appealing theme.
  • Loading branch information
karyanayandi committed Dec 25, 2024
1 parent 778e8cb commit 544dd8f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lua/aurora/colors/aurora.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local colors = {
fg_light = "#E5E9F0",
bg = "#282c34",
gray = "#353b45",
light_gray = "#3e4451",
light_gray = "#353b45",
cyan = "#88c0d0",
blue = "#81A1C1",
dark_blue = "#5E81AC",
Expand Down Expand Up @@ -31,15 +31,15 @@ colors.hint = colors.purple
colors.diff_add = colors.green
colors.diff_add_bg = "#394E3D"
colors.diff_change = colors.dark_blue
colors.diff_change_bg = "#39495D"
colors.diff_change_bg = "#353b45"
colors.diff_remove = colors.red
colors.diff_remove_bg = "#4D2B2E"
colors.diff_text_bg = "#405D7E"
colors.diff_text_bg = "#353b45"

colors.active = "#353b45"
colors.float = "#353b45"
colors.highlight = "#353b45"
colors.highlight_dark = "#545862"
colors.selection = "#565c64"
colors.active = "#282c34"
colors.float = "#282c34"
colors.highlight = "#282c34"
colors.highlight_dark = "#353b45"
colors.selection = "#353b45"

return colors

0 comments on commit 544dd8f

Please sign in to comment.