#951a04 Color
Color Codes | |
---|---|
Hex Code | #951a04 |
RGB Code | rgb(149, 26, 04) |
HSL Code | hsl(9, 95%, 30%) |
#951a04 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(149, 26, 04); }
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(9, 95%, 30%); }
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 #951a04
RGB Code | Hex Code | Preview |
---|---|---|
rgb(149, 26, 04, 10%) | #951a041a | |
rgb(149, 26, 04, 20%) | #951a0433 | |
rgb(149, 26, 04, 40%) | #951a044C | |
rgb(149, 26, 04, 60%) | #951a0499 | |
rgb(149, 26, 04, 80%) | #951a04CC | |
rgb(149, 26, 04, 100%) | #951a04FF |
Saturated and desaturated colors of #951a04
HSL Code | Preview |
---|---|
hsl(9, 10%, 30%) | |
hsl(9, 20%, 30%) | |
hsl(9, 40%, 30%) | |
hsl(9, 60%, 30%) | |
hsl(9, 80%, 30%) | |
hsl(9, 100%, 30%) |
#951a04 Color Usage In CSS
body { color: #951a04; } p { color: rgb(149, 26, 04); } header { border-bottom:1px solid #951a04; }