Skip to content

Commit

Permalink
feat(astrodark): add more color palettes and more
Browse files Browse the repository at this point in the history
this adds more color palettes as well as some tuning on the syntax colors
also fixes the incorrect status line color.
  • Loading branch information
A-Lamia authored and mehalter committed Jul 9, 2023
1 parent dbf2d9b commit 018f4b7
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions lua/astrotheme/palettes/astrodark.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ local c = {
--------------------------------
--- Syntax
--------------------------------
c.syntax.red = "#FD9298"
c.syntax.blue = "#70B6F3"
c.syntax.green = "#8FBE6C"
c.syntax.yellow = "#E1A640"
c.syntax.purple = "#D69BE6"
c.syntax.cyan = "#45C3B9"
c.syntax.orange = "#FB976A"
c.syntax.red = "#CD7B7F"
c.syntax.blue = "#519CB4"
c.syntax.green = "#7D9B5D"
c.syntax.yellow = "#B58C3F"
c.syntax.purple = "#BD7EAC"
c.syntax.cyan = "#52A08C"
c.syntax.orange = "#CD7E64"

c.syntax.comment = "#777777"
c.syntax.text = "#AEAEAE"
c.syntax.subtext0 = "#777777"
c.syntax.subtext1 = "#4B4B4B"
Expand All @@ -34,10 +36,13 @@ c.ui.tabline = "#101114"
c.ui.winbar = "#777777"
c.ui.tool = "#141618"
c.ui.base = "#181A1C"
c.ui.statusline = "#141618"
c.ui.split = "#141618"
c.ui.inactive_base = "#141618"
c.ui.statusline = "#101114"
c.ui.split = "#101114"
c.ui.popup = "#141618"
c.ui.border = "#00b298"
c.ui.float = "#141618"
c.ui.title = "#00b298"
c.ui.border = "#777777"
c.ui.current_line = "#1C1E20"
c.ui.scrollbar = "#00b298"
c.ui.selection = "#26343F"
Expand Down

4 comments on commit 018f4b7

@pkazmier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know themes are entirely subjective, but IMHO, I think the syntax color changes have made the theme too bland or watered down if you will. It's made it difficult to differentiate between red and orange for example. I've reverted them my own user configuration to the prior values.

Before this commit (easier to read and distinguish colors):
Screenshot 2023-07-10 at 8 58 41 AM

After the commit (harder to read, look at Args[0] and you can barely tell one is red and the other is orange):
Screenshot 2023-07-10 at 8 59 36 AM

@A-Lamia
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for commenting i originally liked it more saturated as well, some users said it felt too colorful but after using it for days i think i agree with you and will be reverting this, thanks!

@pkazmier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. Is there a place to provide direct feedback to you as I'm using this theme as my daily driver. I'm happy to continue to do so via Issues, but given the in-flux nature, if that's too much overhead for you guys, I can provide feedback other ways as well.

@mehalter
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The discord is a great place @pkazmier or issues is also fine as well. We are hoping to get this new version released later today. There are some bug fixes in the works and the README needs to get updated, but should be out in prime time today :)

Please sign in to comment.