#e3cd06 Color
Color Codes | |
---|---|
Hex Code | #e3cd06 |
RGB Code | rgb(227, 205, 06) |
HSL Code | hsl(54, 95%, 46%) |
#e3cd06 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(227, 205, 06); }
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(54, 95%, 46%); }
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 #e3cd06
RGB Code | Hex Code | Preview |
---|---|---|
rgb(227, 205, 06, 10%) | #e3cd061a | |
rgb(227, 205, 06, 20%) | #e3cd0633 | |
rgb(227, 205, 06, 40%) | #e3cd064C | |
rgb(227, 205, 06, 60%) | #e3cd0699 | |
rgb(227, 205, 06, 80%) | #e3cd06CC | |
rgb(227, 205, 06, 100%) | #e3cd06FF |
Saturated and desaturated colors of #e3cd06
HSL Code | Preview |
---|---|
hsl(54, 10%, 46%) | |
hsl(54, 20%, 46%) | |
hsl(54, 40%, 46%) | |
hsl(54, 60%, 46%) | |
hsl(54, 80%, 46%) | |
hsl(54, 100%, 46%) |
#e3cd06 Color Usage In CSS
body { color: #e3cd06; } p { color: rgb(227, 205, 06); } header { border-bottom:1px solid #e3cd06; }