0
Inline css. How does the color combinations mix.
It's embedded css
3 ответов
+ 1
What do you mean by "combinations mix"?
+ 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);
}
0
Like how to blend the color. How to apply the color. How to mix it