#03505a Color
Color Codes | |
---|---|
Hex Code | #03505a |
RGB Code | rgb(03, 80, 90) |
HSL Code | hsl(187, 94%, 18%) |
#03505a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(03, 80, 90); }
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(187, 94%, 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 #03505a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(03, 80, 90, 10%) | #03505a1a | |
rgb(03, 80, 90, 20%) | #03505a33 | |
rgb(03, 80, 90, 40%) | #03505a4C | |
rgb(03, 80, 90, 60%) | #03505a99 | |
rgb(03, 80, 90, 80%) | #03505aCC | |
rgb(03, 80, 90, 100%) | #03505aFF |
Saturated and desaturated colors of #03505a
HSL Code | Preview |
---|---|
hsl(187, 10%, 18%) | |
hsl(187, 20%, 18%) | |
hsl(187, 40%, 18%) | |
hsl(187, 60%, 18%) | |
hsl(187, 80%, 18%) | |
hsl(187, 100%, 18%) |
#03505a Color Usage In CSS
body { color: #03505a; } p { color: rgb(03, 80, 90); } header { border-bottom:1px solid #03505a; }