Help... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Help...

i don't know how to make Hexadecimal colors any help please ?

27th Apr 2017, 11:55 AM
Mark
Mark - avatar
3 Answers
+ 7
You make hexadecimal colors as a painter mix color, but with complementary colors to primary colors: A painter use subtractive colors system with cyan, magenta, yellow ( and black ), screen use additive with red, green and blue. On screen, no color is black, while on paper no color is white. http://www.worqx.com/color/color_systems.htm An hexaecimal color is composed by three digits ( from 0 to 9 and a to f -- 10 to 15 decimal ) pair ( each count from 00 to ff -- 0 to 255 decimal ). Full ( ff ) red and full green make yellow, full green and full blue make cyan, full red and full blue make magenta, full red, green and blue make white. You mix different levels of red, green and blue to compose a color... If you're more comfortable with decimal, you can use css rgb() notation. If you need transparency level, you can add an 'alpha channel' to define opacity of your color by appending one more hexadecimal pair, or use rgba() notation ( then, opacity is the 4th parameter, and unlike colors levels expected are integer from 0 to 255, opacity is expected to be float from 0 to 1 ). Standard tends to have rgb() notation implemented as rgba ( meaning support a 4th opacity parameter ). Anyway, you could prefer HSL ( Hue Saturation Luminosity ) collor system also provided by css by using hsl() or hsla() ( same as rgb/rgba for standard implementation, first parameter is bounded from 0 to 359 -- but is circular, meaning than 360 is equivalent to 0 -- and second and third are from 0 to 100 ).
27th Apr 2017, 4:52 PM
visph
visph - avatar
+ 2
Choose a color from color picker.. https://code.sololearn.com/WPN1nDX3v0O9/?ref=app Use the generated code to set background, font color etc in css
27th Apr 2017, 11:59 AM
Calviղ
Calviղ - avatar
+ 2
thx bro u really helped me
27th Apr 2017, 11:59 AM
Mark
Mark - avatar