Skip to content

Add RGBA support - #13

Open
UtkarshVerma wants to merge 4 commits into
bakkeby:masterfrom
UtkarshVerma:rgba
Open

Add RGBA support#13
UtkarshVerma wants to merge 4 commits into
bakkeby:masterfrom
UtkarshVerma:rgba

Conversation

@UtkarshVerma

Copy link
Copy Markdown

This PR removes the alphas array and implements RGBA support.

@bakkeby

bakkeby commented Jul 9, 2022

Copy link
Copy Markdown
Owner

This certainly simplifies the alpha patch a great deal. Will have to do a more in-depth review given that what is here is not what you'd get with the normal alpha patch.

There may be a few edge cases to consider like when using short RGB codes like #ccc or named colours like "magenta".

@UtkarshVerma

Copy link
Copy Markdown
Author

My personal opinion on the short names is that they should be deemed invalid. This PR behaves in the following way, currently:

  • If passed #RRGGBB, consider alpha = 255
  • If passed #RRGGBBAA, parse the alpha hex
  • Panic otherwise

This keeps the code-base simple and clear.

Comment thread drw.c Outdated
@N-R-K

N-R-K commented Aug 25, 2022

Copy link
Copy Markdown

My personal opinion on the short names is that they should be deemed invalid. This PR behaves in the following way, currently:

* If passed #RRGGBB, consider alpha = 255

* If passed #RRGGBBAA, parse the alpha hex

* Panic otherwise

This keeps the code-base simple and clear.

Have you considered the fact that this also break literal color names such as "white"/"black" etc ? Because colornames aren't limited to hex values as of now.

P.S: Just noticed that bakkeby already bought up the issue with named colors.

@UtkarshVerma

Copy link
Copy Markdown
Author

For this patch to be feasible, what improvements do you guys think I should make?

@bakkeby

bakkeby commented Feb 16, 2023

Copy link
Copy Markdown
Owner

Maybe this is better as a candidate patch on the suckless pages page?

I did play around with something similar for dwm and my experience with it is that although it works it is kind of annoying to maintain alpha values on a per individual colour code basis, especially when you are using Xresources.

@UtkarshVerma

Copy link
Copy Markdown
Author

Maybe this is better as a candidate patch on the suckless pages page?

I did play around with something similar for dwm and my experience with it is that although it works it is kind of annoying to maintain alpha values on a per individual colour code basis, especially when you are using Xresources.

I don't feel it is annoying at all. I simply rely on pywal for applying my config everywhere. Even then, the config isn't big:
image

For me, the biggest issue was not being able to modify the alpha value at all, and this patch serves my use case. I'll try putting this up on the suckless website once I find time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants