#d79058 Color
Color Codes | |
---|---|
Hex Code | #d79058 |
RGB Code | rgb(215, 144, 88) |
HSL Code | hsl(26, 61%, 59%) |
#d79058 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(215, 144, 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(26, 61%, 59%); }
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 #d79058
RGB Code | Hex Code | Preview |
---|---|---|
rgb(215, 144, 88, 10%) | #d790581a | |
rgb(215, 144, 88, 20%) | #d7905833 | |
rgb(215, 144, 88, 40%) | #d790584C | |
rgb(215, 144, 88, 60%) | #d7905899 | |
rgb(215, 144, 88, 80%) | #d79058CC | |
rgb(215, 144, 88, 100%) | #d79058FF |
Saturated and desaturated colors of #d79058
HSL Code | Preview |
---|---|
hsl(26, 10%, 59%) | |
hsl(26, 20%, 59%) | |
hsl(26, 40%, 59%) | |
hsl(26, 60%, 59%) | |
hsl(26, 80%, 59%) | |
hsl(26, 100%, 59%) |
#d79058 Color Usage In CSS
body { color: #d79058; } p { color: rgb(215, 144, 88); } header { border-bottom:1px solid #d79058; }