#03d1de Color
Color Codes | |
---|---|
Hex Code | #03d1de |
RGB Code | rgb(03, 209, 222) |
HSL Code | hsl(184, 97%, 44%) |
#03d1de Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(03, 209, 222); }
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(184, 97%, 44%); }
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 #03d1de
RGB Code | Hex Code | Preview |
---|---|---|
rgb(03, 209, 222, 10%) | #03d1de1a | |
rgb(03, 209, 222, 20%) | #03d1de33 | |
rgb(03, 209, 222, 40%) | #03d1de4C | |
rgb(03, 209, 222, 60%) | #03d1de99 | |
rgb(03, 209, 222, 80%) | #03d1deCC | |
rgb(03, 209, 222, 100%) | #03d1deFF |
Saturated and desaturated colors of #03d1de
HSL Code | Preview |
---|---|
hsl(184, 10%, 44%) | |
hsl(184, 20%, 44%) | |
hsl(184, 40%, 44%) | |
hsl(184, 60%, 44%) | |
hsl(184, 80%, 44%) | |
hsl(184, 100%, 44%) |
#03d1de Color Usage In CSS
body { color: #03d1de; } p { color: rgb(03, 209, 222); } header { border-bottom:1px solid #03d1de; }