#ebd69f Color
Color Codes | |
---|---|
Hex Code | #ebd69f |
RGB Code | rgb(235, 214, 159) |
HSL Code | hsl(43, 66%, 77%) |
#ebd69f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(235, 214, 159); }
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(43, 66%, 77%); }
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 #ebd69f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(235, 214, 159, 10%) | #ebd69f1a | |
rgb(235, 214, 159, 20%) | #ebd69f33 | |
rgb(235, 214, 159, 40%) | #ebd69f4C | |
rgb(235, 214, 159, 60%) | #ebd69f99 | |
rgb(235, 214, 159, 80%) | #ebd69fCC | |
rgb(235, 214, 159, 100%) | #ebd69fFF |
Saturated and desaturated colors of #ebd69f
HSL Code | Preview |
---|---|
hsl(43, 10%, 77%) | |
hsl(43, 20%, 77%) | |
hsl(43, 40%, 77%) | |
hsl(43, 60%, 77%) | |
hsl(43, 80%, 77%) | |
hsl(43, 100%, 77%) |
#ebd69f Color Usage In CSS
body { color: #ebd69f; } p { color: rgb(235, 214, 159); } header { border-bottom:1px solid #ebd69f; }