#00ccec Color
Color Codes | |
---|---|
Hex Code | #00ccec |
RGB Code | rgb(00, 204, 236) |
HSL Code | hsl(188, 100%, 46%) |
#00ccec Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(00, 204, 236); }
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(188, 100%, 46%); }
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 #00ccec
RGB Code | Hex Code | Preview |
---|---|---|
rgb(00, 204, 236, 10%) | #00ccec1a | |
rgb(00, 204, 236, 20%) | #00ccec33 | |
rgb(00, 204, 236, 40%) | #00ccec4C | |
rgb(00, 204, 236, 60%) | #00ccec99 | |
rgb(00, 204, 236, 80%) | #00ccecCC | |
rgb(00, 204, 236, 100%) | #00ccecFF |
Saturated and desaturated colors of #00ccec
HSL Code | Preview |
---|---|
hsl(188, 10%, 46%) | |
hsl(188, 20%, 46%) | |
hsl(188, 40%, 46%) | |
hsl(188, 60%, 46%) | |
hsl(188, 80%, 46%) | |
hsl(188, 100%, 46%) |
#00ccec Color Usage In CSS
body { color: #00ccec; } p { color: rgb(00, 204, 236); } header { border-bottom:1px solid #00ccec; }