Skip to content

Commit

Permalink
feat(astromars): large palette change and value balancing
Browse files Browse the repository at this point in the history
also updated to use the new properties.
  • Loading branch information
A-Lamia authored and mehalter committed Jul 9, 2023
1 parent ea19b90 commit 873c6a0
Showing 1 changed file with 29 additions and 23 deletions.
52 changes: 29 additions & 23 deletions lua/astrotheme/palettes/astromars.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,18 @@ local c = {
--------------------------------
--- Syntax
--------------------------------
c.syntax.red = "#E67C83"
c.syntax.blue = "#82A3B0"
c.syntax.green = "#7FAA55"
c.syntax.yellow = "#CC9300"
c.syntax.purple = "#D085BD"
c.syntax.cyan = "#57AD8C"
c.syntax.orange = "#E08664"
c.syntax.text = "#AA989B"
c.syntax.subtext0 = "#644B50"
c.syntax.subtext1 = "#3B2329"
c.syntax.red = "#DF8489"
c.syntax.blue = "#4FA9C6"
c.syntax.green = "#84A860"
c.syntax.yellow = "#C3963D"
c.syntax.purple = "#CD87BA"
c.syntax.cyan = "#4FAD97"
c.syntax.orange = "#EF9474"

c.syntax.comment = "#967E83"
c.syntax.text = "#B2979D"
c.syntax.subtext0 = "#967E83"
c.syntax.subtext1 = "#7C6469"

--------------------------------
--- UI
Expand All @@ -30,19 +32,23 @@ c.ui.purple = "#E8A1D7"
c.ui.cyan = "#88C3AB"
c.ui.orange = "#FAA27F"

c.ui.tabline = "#18090E"
c.ui.winbar = "#644B50"
c.ui.tool = "#11060B"
c.ui.base = "#0B0406"
c.ui.statusline = "#18090E"
c.ui.split = "#11060B"
c.ui.popup = "#11060B"
c.ui.border = "#FAA27F"
c.ui.current_line = "#17060A"
c.ui.scrollbar = "#FAA27F"
c.ui.selection = "#26343F"
c.ui.highlight = "#242628"
c.ui.text = "#AA989B"
c.ui.tabline = "#1E0F14"
c.ui.winbar = "#8D8184"
c.ui.tool = "#180A10"
c.ui.base = "#0B0204"
c.ui.inactive_base = "#180A10"
c.ui.statusline = "#1E0F14"
c.ui.split = "#1E0F14"
c.ui.popup = "#1E0F14"
c.ui.float = "#D8D6D5"
c.ui.title = "#88C3AB"
c.ui.border = "#736468"
c.ui.current_line = "#100407"
c.ui.scrollbar = "#736468"
c.ui.selection = "#1B282C"
c.ui.highlight = "#2A1F22"
c.ui.none_text = "#181213"
c.ui.text = "#B2979D"

--------------------------------
--- terminal
Expand Down

0 comments on commit 873c6a0

Please sign in to comment.