#f15f32 Color
Color Codes | |
---|---|
Hex Code | #f15f32 |
RGB Code | rgb(241, 95, 50) |
HSL Code | hsl(14, 87%, 57%) |
#f15f32 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(241, 95, 50); }
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(14, 87%, 57%); }
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 #f15f32
RGB Code | Hex Code | Preview |
---|---|---|
rgb(241, 95, 50, 10%) | #f15f321a | |
rgb(241, 95, 50, 20%) | #f15f3233 | |
rgb(241, 95, 50, 40%) | #f15f324C | |
rgb(241, 95, 50, 60%) | #f15f3299 | |
rgb(241, 95, 50, 80%) | #f15f32CC | |
rgb(241, 95, 50, 100%) | #f15f32FF |
Saturated and desaturated colors of #f15f32
HSL Code | Preview |
---|---|
hsl(14, 10%, 57%) | |
hsl(14, 20%, 57%) | |
hsl(14, 40%, 57%) | |
hsl(14, 60%, 57%) | |
hsl(14, 80%, 57%) | |
hsl(14, 100%, 57%) |
#f15f32 Color Usage In CSS
body { color: #f15f32; } p { color: rgb(241, 95, 50); } header { border-bottom:1px solid #f15f32; }