#fe0745 Color
Color Codes | |
---|---|
Hex Code | #fe0745 |
RGB Code | rgb(254, 07, 69) |
HSL Code | hsl(345, 99%, 51%) |
#fe0745 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(254, 07, 69); }
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(345, 99%, 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 #fe0745
RGB Code | Hex Code | Preview |
---|---|---|
rgb(254, 07, 69, 10%) | #fe07451a | |
rgb(254, 07, 69, 20%) | #fe074533 | |
rgb(254, 07, 69, 40%) | #fe07454C | |
rgb(254, 07, 69, 60%) | #fe074599 | |
rgb(254, 07, 69, 80%) | #fe0745CC | |
rgb(254, 07, 69, 100%) | #fe0745FF |
Saturated and desaturated colors of #fe0745
HSL Code | Preview |
---|---|
hsl(345, 10%, 51%) | |
hsl(345, 20%, 51%) | |
hsl(345, 40%, 51%) | |
hsl(345, 60%, 51%) | |
hsl(345, 80%, 51%) | |
hsl(345, 100%, 51%) |
#fe0745 Color Usage In CSS
body { color: #fe0745; } p { color: rgb(254, 07, 69); } header { border-bottom:1px solid #fe0745; }