#09c8f8 Color
Color Codes | |
---|---|
Hex Code | #09c8f8 |
RGB Code | rgb(09, 200, 248) |
HSL Code | hsl(192, 94%, 50%) |
#09c8f8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(09, 200, 248); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(192, 94%, 50%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #09c8f8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(09, 200, 248, 10%) | #09c8f81a | |
rgb(09, 200, 248, 20%) | #09c8f833 | |
rgb(09, 200, 248, 40%) | #09c8f84C | |
rgb(09, 200, 248, 60%) | #09c8f899 | |
rgb(09, 200, 248, 80%) | #09c8f8CC | |
rgb(09, 200, 248, 100%) | #09c8f8FF |
Saturated and desaturated colors of #09c8f8
HSL Code | Preview |
---|---|
hsl(192, 10%, 50%) | |
hsl(192, 20%, 50%) | |
hsl(192, 40%, 50%) | |
hsl(192, 60%, 50%) | |
hsl(192, 80%, 50%) | |
hsl(192, 100%, 50%) |
#09c8f8 Color Usage In CSS
body { color: #09c8f8; } p { color: rgb(09, 200, 248); } header { border-bottom:1px solid #09c8f8; }