Skip to content

Commit

Permalink
feat(colors): update color palette and add new file
Browse files Browse the repository at this point in the history
- Added new color file `au.lua`
- Updated color values in `aurora.lua`:
  - Changed `light_gray` to `#9fa5ac`
  - Changed `light_green` to `#bdd1ad`
  - Set `active` and `float` to `bg`
  - Set `highlight_dark` to `bg`
  • Loading branch information
karyanayandi committed Feb 2, 2025
1 parent 58005d0 commit 0ce0fe8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Empty file added lua/aurora/colors/au.lua
Empty file.
10 changes: 5 additions & 5 deletions lua/aurora/colors/aurora.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ local colors = {
fg_light = "#e5e9f0",
bg = "#2e3440",
gray = "#565c64",
light_gray = "#565c64",
light_gray = "#9fa5ac",
cyan = "#88c0d0",
blue = "#81a1c1",
dark_blue = "#5e81ac",
green = "#a3be8c",
dark_green = "#3d512d",
light_green = "#8fbcbb",
light_green = "#bdd1ad",
dark_red = "#80323b",
red = "#bf616a",
light_red = "#dda3a8",
Expand All @@ -35,10 +35,10 @@ colors.diff_remove = colors.red
colors.diff_remove_bg = colors.dark_red
colors.diff_text_bg = "#3b4252"

colors.active = "#434c5e"
colors.float = "#434c5e"
colors.active = colors.bg
colors.float = colors.bg
colors.highlight = "#3b4252"
colors.highlight_dark = "#2e3440"
colors.highlight_dark = colors.bg
colors.selection = "#3b4252"

return colors

0 comments on commit 0ce0fe8

Please sign in to comment.