#cdae53 Color
Color Codes | |
---|---|
Hex Code | #cdae53 |
RGB Code | rgb(205, 174, 83) |
HSL Code | hsl(45, 55%, 56%) |
#cdae53 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 174, 83); }
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(45, 55%, 56%); }
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 #cdae53
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 174, 83, 10%) | #cdae531a | |
rgb(205, 174, 83, 20%) | #cdae5333 | |
rgb(205, 174, 83, 40%) | #cdae534C | |
rgb(205, 174, 83, 60%) | #cdae5399 | |
rgb(205, 174, 83, 80%) | #cdae53CC | |
rgb(205, 174, 83, 100%) | #cdae53FF |
Saturated and desaturated colors of #cdae53
HSL Code | Preview |
---|---|
hsl(45, 10%, 56%) | |
hsl(45, 20%, 56%) | |
hsl(45, 40%, 56%) | |
hsl(45, 60%, 56%) | |
hsl(45, 80%, 56%) | |
hsl(45, 100%, 56%) |
#cdae53 Color Usage In CSS
body { color: #cdae53; } p { color: rgb(205, 174, 83); } header { border-bottom:1px solid #cdae53; }