#f4fa15 Color
Color Codes | |
---|---|
Hex Code | #f4fa15 |
RGB Code | rgb(244, 250, 21) |
HSL Code | hsl(62, 96%, 53%) |
#f4fa15 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(244, 250, 21); }
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(62, 96%, 53%); }
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 #f4fa15
RGB Code | Hex Code | Preview |
---|---|---|
rgb(244, 250, 21, 10%) | #f4fa151a | |
rgb(244, 250, 21, 20%) | #f4fa1533 | |
rgb(244, 250, 21, 40%) | #f4fa154C | |
rgb(244, 250, 21, 60%) | #f4fa1599 | |
rgb(244, 250, 21, 80%) | #f4fa15CC | |
rgb(244, 250, 21, 100%) | #f4fa15FF |
Saturated and desaturated colors of #f4fa15
HSL Code | Preview |
---|---|
hsl(62, 10%, 53%) | |
hsl(62, 20%, 53%) | |
hsl(62, 40%, 53%) | |
hsl(62, 60%, 53%) | |
hsl(62, 80%, 53%) | |
hsl(62, 100%, 53%) |
#f4fa15 Color Usage In CSS
body { color: #f4fa15; } p { color: rgb(244, 250, 21); } header { border-bottom:1px solid #f4fa15; }