#cdc709 Color
Color Codes | |
---|---|
Hex Code | #cdc709 |
RGB Code | rgb(205, 199, 09) |
HSL Code | hsl(58, 92%, 42%) |
#cdc709 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 199, 09); }
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(58, 92%, 42%); }
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 #cdc709
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 199, 09, 10%) | #cdc7091a | |
rgb(205, 199, 09, 20%) | #cdc70933 | |
rgb(205, 199, 09, 40%) | #cdc7094C | |
rgb(205, 199, 09, 60%) | #cdc70999 | |
rgb(205, 199, 09, 80%) | #cdc709CC | |
rgb(205, 199, 09, 100%) | #cdc709FF |
Saturated and desaturated colors of #cdc709
HSL Code | Preview |
---|---|
hsl(58, 10%, 42%) | |
hsl(58, 20%, 42%) | |
hsl(58, 40%, 42%) | |
hsl(58, 60%, 42%) | |
hsl(58, 80%, 42%) | |
hsl(58, 100%, 42%) |
#cdc709 Color Usage In CSS
body { color: #cdc709; } p { color: rgb(205, 199, 09); } header { border-bottom:1px solid #cdc709; }