#f8e372 Color
Color Codes | |
---|---|
Hex Code | #f8e372 |
RGB Code | rgb(248, 227, 114) |
HSL Code | hsl(51, 91%, 71%) |
#f8e372 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(248, 227, 114); }
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(51, 91%, 71%); }
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 #f8e372
RGB Code | Hex Code | Preview |
---|---|---|
rgb(248, 227, 114, 10%) | #f8e3721a | |
rgb(248, 227, 114, 20%) | #f8e37233 | |
rgb(248, 227, 114, 40%) | #f8e3724C | |
rgb(248, 227, 114, 60%) | #f8e37299 | |
rgb(248, 227, 114, 80%) | #f8e372CC | |
rgb(248, 227, 114, 100%) | #f8e372FF |
Saturated and desaturated colors of #f8e372
HSL Code | Preview |
---|---|
hsl(51, 10%, 71%) | |
hsl(51, 20%, 71%) | |
hsl(51, 40%, 71%) | |
hsl(51, 60%, 71%) | |
hsl(51, 80%, 71%) | |
hsl(51, 100%, 71%) |
#f8e372 Color Usage In CSS
body { color: #f8e372; } p { color: rgb(248, 227, 114); } header { border-bottom:1px solid #f8e372; }