#edc705 Color
Color Codes | |
---|---|
Hex Code | #edc705 |
RGB Code | rgb(237, 199, 05) |
HSL Code | hsl(50, 96%, 47%) |
#edc705 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(237, 199, 05); }
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(50, 96%, 47%); }
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 #edc705
RGB Code | Hex Code | Preview |
---|---|---|
rgb(237, 199, 05, 10%) | #edc7051a | |
rgb(237, 199, 05, 20%) | #edc70533 | |
rgb(237, 199, 05, 40%) | #edc7054C | |
rgb(237, 199, 05, 60%) | #edc70599 | |
rgb(237, 199, 05, 80%) | #edc705CC | |
rgb(237, 199, 05, 100%) | #edc705FF |
Saturated and desaturated colors of #edc705
HSL Code | Preview |
---|---|
hsl(50, 10%, 47%) | |
hsl(50, 20%, 47%) | |
hsl(50, 40%, 47%) | |
hsl(50, 60%, 47%) | |
hsl(50, 80%, 47%) | |
hsl(50, 100%, 47%) |
#edc705 Color Usage In CSS
body { color: #edc705; } p { color: rgb(237, 199, 05); } header { border-bottom:1px solid #edc705; }