#f36a09 Color
Color Codes | |
---|---|
Hex Code | #f36a09 |
RGB Code | rgb(243, 106, 09) |
HSL Code | hsl(25, 93%, 49%) |
#f36a09 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 106, 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(25, 93%, 49%); }
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 #f36a09
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 106, 09, 10%) | #f36a091a | |
rgb(243, 106, 09, 20%) | #f36a0933 | |
rgb(243, 106, 09, 40%) | #f36a094C | |
rgb(243, 106, 09, 60%) | #f36a0999 | |
rgb(243, 106, 09, 80%) | #f36a09CC | |
rgb(243, 106, 09, 100%) | #f36a09FF |
Saturated and desaturated colors of #f36a09
HSL Code | Preview |
---|---|
hsl(25, 10%, 49%) | |
hsl(25, 20%, 49%) | |
hsl(25, 40%, 49%) | |
hsl(25, 60%, 49%) | |
hsl(25, 80%, 49%) | |
hsl(25, 100%, 49%) |
#f36a09 Color Usage In CSS
body { color: #f36a09; } p { color: rgb(243, 106, 09); } header { border-bottom:1px solid #f36a09; }