#02434d Color
Color Codes | |
---|---|
Hex Code | #02434d |
RGB Code | rgb(02, 67, 77) |
HSL Code | hsl(188, 95%, 15%) |
#02434d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(02, 67, 77); }
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, 95%, 15%); }
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 #02434d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(02, 67, 77, 10%) | #02434d1a | |
rgb(02, 67, 77, 20%) | #02434d33 | |
rgb(02, 67, 77, 40%) | #02434d4C | |
rgb(02, 67, 77, 60%) | #02434d99 | |
rgb(02, 67, 77, 80%) | #02434dCC | |
rgb(02, 67, 77, 100%) | #02434dFF |
Saturated and desaturated colors of #02434d
HSL Code | Preview |
---|---|
hsl(188, 10%, 15%) | |
hsl(188, 20%, 15%) | |
hsl(188, 40%, 15%) | |
hsl(188, 60%, 15%) | |
hsl(188, 80%, 15%) | |
hsl(188, 100%, 15%) |
#02434d Color Usage In CSS
body { color: #02434d; } p { color: rgb(02, 67, 77); } header { border-bottom:1px solid #02434d; }