Can we use "hs + b" controls rather than "sb + h"? #65
Replies: 8 comments
-
I am thinking on making another demo using the |
Beta Was this translation helpful? Give feedback.
-
Or maybe not. I am still thinking, without any plans on adding new features. This plugin should be kept on its simplest state. |
Beta Was this translation helpful? Give feedback.
-
Well if you feel it's superficial, then no big need to waste your time. I could live without it. It might be just, you know, good as a form of art - when you do beautiful things just for fun. Buddhists say that when you make beutiful things, such as decorating Buddha altar, you create more causes to be calm, beautiful and happy :). So web design and programming is like a spiritual practice for me. :) Also, it might be somehow useful for people. This plugin seems to me most useful - because it's simple and easily adaptable. So thank you again in any case. Best wishes. |
Beta Was this translation helpful? Give feedback.
-
I just got an idea: switch |
Beta Was this translation helpful? Give feedback.
-
Aha. So it might be not very complex. Like adding a check if we have horizontal coordinate there, and then choosing one of the two functions. For background image H*V |
Beta Was this translation helpful? Give feedback.
-
div {
width:200px;
height:200px;
position:relative;
background-image:linear-gradient(to right,#f00 0%,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00 100%);
}
div:before {
content:"";
position:absolute;
top:0;
right:0;
bottom:0;
left:0;
background-image:linear-gradient(to bottom,#fff,transparent,#000);
} You don’t even need the second slider. |
Beta Was this translation helpful? Give feedback.
-
No, I think there should be 3 coordinates. That way we mix either with white or with black, but less saturation might mean dissolving in both white and black. Suppose we take 50% white + 50% red: 50% black + 50% red: But if we mix with 50% gray Also how could we get gray? |
Beta Was this translation helpful? Give feedback.
-
That makes sense. |
Beta Was this translation helpful? Give feedback.
-
Thanks for a great tool!
It's the very best approach - to keep it simple to use and to extend.
My only inconvenience is that it uses rectangle of saturation * brightness, plus a slider of hue.
That approach is good to fine-tune colors of a given hue, but it's not the best way to quickly select different colors.
Maybe that's OK for heavy duty things like Photoshop, but for simple web applications it seems to me it would be more convenient to have a large rectangle of hue * saturation, and a stripe slider of brightness.
Then it's like choosing a color on a large palette, and then maybe adjusting brightness.
I tried both approaches in different color pickers and I'm pretty sure.
My JS skills are rudimentary, so I'd like to ask you, respected professionals: is it possible to make a control "hue on X, saturation on Y" + brightness?
Thank you again ;).
PS. I often want to choose several colors of the same brightness, rather than of the same hue; so fro me it is brightness that should go into a separate slider.
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
Beta Was this translation helpful? Give feedback.
All reactions