#33ceb0 Color
Color Codes | |
---|---|
Hex Code | #33ceb0 |
RGB Code | rgb(51, 206, 176) |
HSL Code | hsl(168, 61%, 50%) |
#33ceb0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(51, 206, 176); }
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(168, 61%, 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 #33ceb0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(51, 206, 176, 10%) | #33ceb01a | |
rgb(51, 206, 176, 20%) | #33ceb033 | |
rgb(51, 206, 176, 40%) | #33ceb04C | |
rgb(51, 206, 176, 60%) | #33ceb099 | |
rgb(51, 206, 176, 80%) | #33ceb0CC | |
rgb(51, 206, 176, 100%) | #33ceb0FF |
Saturated and desaturated colors of #33ceb0
HSL Code | Preview |
---|---|
hsl(168, 10%, 50%) | |
hsl(168, 20%, 50%) | |
hsl(168, 40%, 50%) | |
hsl(168, 60%, 50%) | |
hsl(168, 80%, 50%) | |
hsl(168, 100%, 50%) |
#33ceb0 Color Usage In CSS
body { color: #33ceb0; } p { color: rgb(51, 206, 176); } header { border-bottom:1px solid #33ceb0; }