#f3915f Color
Color Codes | |
---|---|
Hex Code | #f3915f |
RGB Code | rgb(243, 145, 95) |
HSL Code | hsl(20, 86%, 66%) |
#f3915f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 145, 95); }
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(20, 86%, 66%); }
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 #f3915f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 145, 95, 10%) | #f3915f1a | |
rgb(243, 145, 95, 20%) | #f3915f33 | |
rgb(243, 145, 95, 40%) | #f3915f4C | |
rgb(243, 145, 95, 60%) | #f3915f99 | |
rgb(243, 145, 95, 80%) | #f3915fCC | |
rgb(243, 145, 95, 100%) | #f3915fFF |
Saturated and desaturated colors of #f3915f
HSL Code | Preview |
---|---|
hsl(20, 10%, 66%) | |
hsl(20, 20%, 66%) | |
hsl(20, 40%, 66%) | |
hsl(20, 60%, 66%) | |
hsl(20, 80%, 66%) | |
hsl(20, 100%, 66%) |
#f3915f Color Usage In CSS
body { color: #f3915f; } p { color: rgb(243, 145, 95); } header { border-bottom:1px solid #f3915f; }