Inline css. How does the color combinations mix. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Inline css. How does the color combinations mix.

It's embedded css

12th May 2020, 3:53 PM
Oluseyi Iyanuoluwa Praise
Oluseyi Iyanuoluwa Praise - avatar
3 Answers
+ 1
What do you mean by "combinations mix"?
12th May 2020, 3:57 PM
Raj Chhatrala
Raj Chhatrala - avatar
+ 1
You can mix it using hex codes or rgb values. Hex: #rrggbb. r for red, g for green, b for blue. That can have value from 0-9 and a-f. body { color: #a688fa; } Or use rgb rgb(red, green, blue) and each one can have value from 0 to 255. body { color: rgb(100, 150, 100); }
12th May 2020, 4:13 PM
Raj Chhatrala
Raj Chhatrala - avatar
0
Like how to blend the color. How to apply the color. How to mix it
12th May 2020, 4:08 PM
Oluseyi Iyanuoluwa Praise
Oluseyi Iyanuoluwa Praise - avatar