#1d0e3d Color
Color Codes | |
---|---|
Hex Code | #1d0e3d |
RGB Code | rgb(29, 14, 61) |
HSL Code | hsl(259, 63%, 15%) |
#1d0e3d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(29, 14, 61); }
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(259, 63%, 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 #1d0e3d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(29, 14, 61, 10%) | #1d0e3d1a | |
rgb(29, 14, 61, 20%) | #1d0e3d33 | |
rgb(29, 14, 61, 40%) | #1d0e3d4C | |
rgb(29, 14, 61, 60%) | #1d0e3d99 | |
rgb(29, 14, 61, 80%) | #1d0e3dCC | |
rgb(29, 14, 61, 100%) | #1d0e3dFF |
Saturated and desaturated colors of #1d0e3d
HSL Code | Preview |
---|---|
hsl(259, 10%, 15%) | |
hsl(259, 20%, 15%) | |
hsl(259, 40%, 15%) | |
hsl(259, 60%, 15%) | |
hsl(259, 80%, 15%) | |
hsl(259, 100%, 15%) |
#1d0e3d Color Usage In CSS
body { color: #1d0e3d; } p { color: rgb(29, 14, 61); } header { border-bottom:1px solid #1d0e3d; }