Skip to content
This repository has been archived by the owner on Nov 14, 2018. It is now read-only.

Add support for manipulating a color as HSV #597

Open
carlosefonseca opened this issue Jul 17, 2018 · 1 comment
Open

Add support for manipulating a color as HSV #597

carlosefonseca opened this issue Jul 17, 2018 · 1 comment
Assignees

Comments

@carlosefonseca
Copy link

I have some code that allows me to modify a ColorInt as an HSV color and returns a ColorInt.

Basically I can do something like this:

textView.textColor = Color.RED.hsv { h += 50; s *= 0.5; v = 0.25 }

I think it fits KTX because it leverages Kotlin to abstract some boring stuff about working with HSV (conversion to and from the FloatArray), and uses existing framework Util methods to do the work.

It's a small thing, I have it in this gist.

What do you think?

@romainguy
Copy link
Collaborator

I like it, it would make even more sense if we also provided .lab and .rgb.

@romainguy romainguy self-assigned this Jul 17, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants