#dec599 Color
Color Codes | |
---|---|
Hex Code | #dec599 |
RGB Code | rgb(222, 197, 153) |
HSL Code | hsl(38, 51%, 74%) |
#dec599 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 197, 153); }
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(38, 51%, 74%); }
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 #dec599
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 197, 153, 10%) | #dec5991a | |
rgb(222, 197, 153, 20%) | #dec59933 | |
rgb(222, 197, 153, 40%) | #dec5994C | |
rgb(222, 197, 153, 60%) | #dec59999 | |
rgb(222, 197, 153, 80%) | #dec599CC | |
rgb(222, 197, 153, 100%) | #dec599FF |
Saturated and desaturated colors of #dec599
HSL Code | Preview |
---|---|
hsl(38, 10%, 74%) | |
hsl(38, 20%, 74%) | |
hsl(38, 40%, 74%) | |
hsl(38, 60%, 74%) | |
hsl(38, 80%, 74%) | |
hsl(38, 100%, 74%) |
#dec599 Color Usage In CSS
body { color: #dec599; } p { color: rgb(222, 197, 153); } header { border-bottom:1px solid #dec599; }