#f3fa26 Color
Color Codes | |
---|---|
Hex Code | #f3fa26 |
RGB Code | rgb(243, 250, 38) |
HSL Code | hsl(62, 95%, 56%) |
#f3fa26 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 250, 38); }
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, 95%, 56%); }
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 #f3fa26
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 250, 38, 10%) | #f3fa261a | |
rgb(243, 250, 38, 20%) | #f3fa2633 | |
rgb(243, 250, 38, 40%) | #f3fa264C | |
rgb(243, 250, 38, 60%) | #f3fa2699 | |
rgb(243, 250, 38, 80%) | #f3fa26CC | |
rgb(243, 250, 38, 100%) | #f3fa26FF |
Saturated and desaturated colors of #f3fa26
HSL Code | Preview |
---|---|
hsl(62, 10%, 56%) | |
hsl(62, 20%, 56%) | |
hsl(62, 40%, 56%) | |
hsl(62, 60%, 56%) | |
hsl(62, 80%, 56%) | |
hsl(62, 100%, 56%) |
#f3fa26 Color Usage In CSS
body { color: #f3fa26; } p { color: rgb(243, 250, 38); } header { border-bottom:1px solid #f3fa26; }