#1f2485 Color
Color Codes | |
---|---|
Hex Code | #1f2485 |
RGB Code | rgb(31, 36, 133) |
HSL Code | hsl(237, 62%, 32%) |
#1f2485 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(31, 36, 133); }
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(237, 62%, 32%); }
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 #1f2485
RGB Code | Hex Code | Preview |
---|---|---|
rgb(31, 36, 133, 10%) | #1f24851a | |
rgb(31, 36, 133, 20%) | #1f248533 | |
rgb(31, 36, 133, 40%) | #1f24854C | |
rgb(31, 36, 133, 60%) | #1f248599 | |
rgb(31, 36, 133, 80%) | #1f2485CC | |
rgb(31, 36, 133, 100%) | #1f2485FF |
Saturated and desaturated colors of #1f2485
HSL Code | Preview |
---|---|
hsl(237, 10%, 32%) | |
hsl(237, 20%, 32%) | |
hsl(237, 40%, 32%) | |
hsl(237, 60%, 32%) | |
hsl(237, 80%, 32%) | |
hsl(237, 100%, 32%) |
#1f2485 Color Usage In CSS
body { color: #1f2485; } p { color: rgb(31, 36, 133); } header { border-bottom:1px solid #1f2485; }