#f94c09 Color
Color Codes | |
---|---|
Hex Code | #f94c09 |
RGB Code | rgb(249, 76, 09) |
HSL Code | hsl(17, 95%, 51%) |
#f94c09 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(249, 76, 09); }
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(17, 95%, 51%); }
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 #f94c09
RGB Code | Hex Code | Preview |
---|---|---|
rgb(249, 76, 09, 10%) | #f94c091a | |
rgb(249, 76, 09, 20%) | #f94c0933 | |
rgb(249, 76, 09, 40%) | #f94c094C | |
rgb(249, 76, 09, 60%) | #f94c0999 | |
rgb(249, 76, 09, 80%) | #f94c09CC | |
rgb(249, 76, 09, 100%) | #f94c09FF |
Saturated and desaturated colors of #f94c09
HSL Code | Preview |
---|---|
hsl(17, 10%, 51%) | |
hsl(17, 20%, 51%) | |
hsl(17, 40%, 51%) | |
hsl(17, 60%, 51%) | |
hsl(17, 80%, 51%) | |
hsl(17, 100%, 51%) |
#f94c09 Color Usage In CSS
body { color: #f94c09; } p { color: rgb(249, 76, 09); } header { border-bottom:1px solid #f94c09; }