#73cbe4 Color
Color Codes | |
---|---|
Hex Code | #73cbe4 |
RGB Code | rgb(115, 203, 228) |
HSL Code | hsl(193, 68%, 67%) |
#73cbe4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(115, 203, 228); }
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(193, 68%, 67%); }
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 #73cbe4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(115, 203, 228, 10%) | #73cbe41a | |
rgb(115, 203, 228, 20%) | #73cbe433 | |
rgb(115, 203, 228, 40%) | #73cbe44C | |
rgb(115, 203, 228, 60%) | #73cbe499 | |
rgb(115, 203, 228, 80%) | #73cbe4CC | |
rgb(115, 203, 228, 100%) | #73cbe4FF |
Saturated and desaturated colors of #73cbe4
HSL Code | Preview |
---|---|
hsl(193, 10%, 67%) | |
hsl(193, 20%, 67%) | |
hsl(193, 40%, 67%) | |
hsl(193, 60%, 67%) | |
hsl(193, 80%, 67%) | |
hsl(193, 100%, 67%) |
#73cbe4 Color Usage In CSS
body { color: #73cbe4; } p { color: rgb(115, 203, 228); } header { border-bottom:1px solid #73cbe4; }