#f99d06 Color
Color Codes | |
---|---|
Hex Code | #f99d06 |
RGB Code | rgb(249, 157, 06) |
HSL Code | hsl(37, 95%, 50%) |
#f99d06 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(249, 157, 06); }
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(37, 95%, 50%); }
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 #f99d06
RGB Code | Hex Code | Preview |
---|---|---|
rgb(249, 157, 06, 10%) | #f99d061a | |
rgb(249, 157, 06, 20%) | #f99d0633 | |
rgb(249, 157, 06, 40%) | #f99d064C | |
rgb(249, 157, 06, 60%) | #f99d0699 | |
rgb(249, 157, 06, 80%) | #f99d06CC | |
rgb(249, 157, 06, 100%) | #f99d06FF |
Saturated and desaturated colors of #f99d06
HSL Code | Preview |
---|---|
hsl(37, 10%, 50%) | |
hsl(37, 20%, 50%) | |
hsl(37, 40%, 50%) | |
hsl(37, 60%, 50%) | |
hsl(37, 80%, 50%) | |
hsl(37, 100%, 50%) |
#f99d06 Color Usage In CSS
body { color: #f99d06; } p { color: rgb(249, 157, 06); } header { border-bottom:1px solid #f99d06; }