#ff4341 Color
Color Codes | |
---|---|
Hex Code | #ff4341 |
RGB Code | rgb(255, 67, 65) |
HSL Code | hsl(1, 100%, 63%) |
#ff4341 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(255, 67, 65); }
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(1, 100%, 63%); }
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 #ff4341
RGB Code | Hex Code | Preview |
---|---|---|
rgb(255, 67, 65, 10%) | #ff43411a | |
rgb(255, 67, 65, 20%) | #ff434133 | |
rgb(255, 67, 65, 40%) | #ff43414C | |
rgb(255, 67, 65, 60%) | #ff434199 | |
rgb(255, 67, 65, 80%) | #ff4341CC | |
rgb(255, 67, 65, 100%) | #ff4341FF |
Saturated and desaturated colors of #ff4341
HSL Code | Preview |
---|---|
hsl(1, 10%, 63%) | |
hsl(1, 20%, 63%) | |
hsl(1, 40%, 63%) | |
hsl(1, 60%, 63%) | |
hsl(1, 80%, 63%) | |
hsl(1, 100%, 63%) |
#ff4341 Color Usage In CSS
body { color: #ff4341; } p { color: rgb(255, 67, 65); } header { border-bottom:1px solid #ff4341; }