#907338 Color
Color Codes | |
---|---|
Hex Code | #907338 |
RGB Code | rgb(144, 115, 56) |
HSL Code | hsl(40, 44%, 39%) |
#907338 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(144, 115, 56); }
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(40, 44%, 39%); }
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 #907338
RGB Code | Hex Code | Preview |
---|---|---|
rgb(144, 115, 56, 10%) | #9073381a | |
rgb(144, 115, 56, 20%) | #90733833 | |
rgb(144, 115, 56, 40%) | #9073384C | |
rgb(144, 115, 56, 60%) | #90733899 | |
rgb(144, 115, 56, 80%) | #907338CC | |
rgb(144, 115, 56, 100%) | #907338FF |
Saturated and desaturated colors of #907338
HSL Code | Preview |
---|---|
hsl(40, 10%, 39%) | |
hsl(40, 20%, 39%) | |
hsl(40, 40%, 39%) | |
hsl(40, 60%, 39%) | |
hsl(40, 80%, 39%) | |
hsl(40, 100%, 39%) |
#907338 Color Usage In CSS
body { color: #907338; } p { color: rgb(144, 115, 56); } header { border-bottom:1px solid #907338; }