#f2eb57 Color
Color Codes | |
---|---|
Hex Code | #f2eb57 |
RGB Code | rgb(242, 235, 87) |
HSL Code | hsl(57, 86%, 65%) |
#f2eb57 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(242, 235, 87); }
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(57, 86%, 65%); }
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 #f2eb57
RGB Code | Hex Code | Preview |
---|---|---|
rgb(242, 235, 87, 10%) | #f2eb571a | |
rgb(242, 235, 87, 20%) | #f2eb5733 | |
rgb(242, 235, 87, 40%) | #f2eb574C | |
rgb(242, 235, 87, 60%) | #f2eb5799 | |
rgb(242, 235, 87, 80%) | #f2eb57CC | |
rgb(242, 235, 87, 100%) | #f2eb57FF |
Saturated and desaturated colors of #f2eb57
HSL Code | Preview |
---|---|
hsl(57, 10%, 65%) | |
hsl(57, 20%, 65%) | |
hsl(57, 40%, 65%) | |
hsl(57, 60%, 65%) | |
hsl(57, 80%, 65%) | |
hsl(57, 100%, 65%) |
#f2eb57 Color Usage In CSS
body { color: #f2eb57; } p { color: rgb(242, 235, 87); } header { border-bottom:1px solid #f2eb57; }