#f1e69f Color
Color Codes | |
---|---|
Hex Code | #f1e69f |
RGB Code | rgb(241, 230, 159) |
HSL Code | hsl(52, 75%, 78%) |
#f1e69f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(241, 230, 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(52, 75%, 78%); }
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 #f1e69f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(241, 230, 159, 10%) | #f1e69f1a | |
rgb(241, 230, 159, 20%) | #f1e69f33 | |
rgb(241, 230, 159, 40%) | #f1e69f4C | |
rgb(241, 230, 159, 60%) | #f1e69f99 | |
rgb(241, 230, 159, 80%) | #f1e69fCC | |
rgb(241, 230, 159, 100%) | #f1e69fFF |
Saturated and desaturated colors of #f1e69f
HSL Code | Preview |
---|---|
hsl(52, 10%, 78%) | |
hsl(52, 20%, 78%) | |
hsl(52, 40%, 78%) | |
hsl(52, 60%, 78%) | |
hsl(52, 80%, 78%) | |
hsl(52, 100%, 78%) |
#f1e69f Color Usage In CSS
body { color: #f1e69f; } p { color: rgb(241, 230, 159); } header { border-bottom:1px solid #f1e69f; }