#f3eb71 Color
Color Codes | |
---|---|
Hex Code | #f3eb71 |
RGB Code | rgb(243, 235, 113) |
HSL Code | hsl(56, 84%, 70%) |
#f3eb71 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 235, 113); }
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(56, 84%, 70%); }
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 #f3eb71
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 235, 113, 10%) | #f3eb711a | |
rgb(243, 235, 113, 20%) | #f3eb7133 | |
rgb(243, 235, 113, 40%) | #f3eb714C | |
rgb(243, 235, 113, 60%) | #f3eb7199 | |
rgb(243, 235, 113, 80%) | #f3eb71CC | |
rgb(243, 235, 113, 100%) | #f3eb71FF |
Saturated and desaturated colors of #f3eb71
HSL Code | Preview |
---|---|
hsl(56, 10%, 70%) | |
hsl(56, 20%, 70%) | |
hsl(56, 40%, 70%) | |
hsl(56, 60%, 70%) | |
hsl(56, 80%, 70%) | |
hsl(56, 100%, 70%) |
#f3eb71 Color Usage In CSS
body { color: #f3eb71; } p { color: rgb(243, 235, 113); } header { border-bottom:1px solid #f3eb71; }