#035958 Color
Color Codes | |
---|---|
Hex Code | #035958 |
RGB Code | rgb(03, 89, 88) |
HSL Code | hsl(179, 93%, 18%) |
#035958 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(03, 89, 88); }
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(179, 93%, 18%); }
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 #035958
RGB Code | Hex Code | Preview |
---|---|---|
rgb(03, 89, 88, 10%) | #0359581a | |
rgb(03, 89, 88, 20%) | #03595833 | |
rgb(03, 89, 88, 40%) | #0359584C | |
rgb(03, 89, 88, 60%) | #03595899 | |
rgb(03, 89, 88, 80%) | #035958CC | |
rgb(03, 89, 88, 100%) | #035958FF |
Saturated and desaturated colors of #035958
HSL Code | Preview |
---|---|
hsl(179, 10%, 18%) | |
hsl(179, 20%, 18%) | |
hsl(179, 40%, 18%) | |
hsl(179, 60%, 18%) | |
hsl(179, 80%, 18%) | |
hsl(179, 100%, 18%) |
#035958 Color Usage In CSS
body { color: #035958; } p { color: rgb(03, 89, 88); } header { border-bottom:1px solid #035958; }