#fe835d Color
Color Codes | |
---|---|
Hex Code | #fe835d |
RGB Code | rgb(254, 131, 93) |
HSL Code | hsl(14, 99%, 68%) |
#fe835d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(254, 131, 93); }
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, 99%, 68%); }
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 #fe835d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(254, 131, 93, 10%) | #fe835d1a | |
rgb(254, 131, 93, 20%) | #fe835d33 | |
rgb(254, 131, 93, 40%) | #fe835d4C | |
rgb(254, 131, 93, 60%) | #fe835d99 | |
rgb(254, 131, 93, 80%) | #fe835dCC | |
rgb(254, 131, 93, 100%) | #fe835dFF |
Saturated and desaturated colors of #fe835d
HSL Code | Preview |
---|---|
hsl(14, 10%, 68%) | |
hsl(14, 20%, 68%) | |
hsl(14, 40%, 68%) | |
hsl(14, 60%, 68%) | |
hsl(14, 80%, 68%) | |
hsl(14, 100%, 68%) |
#fe835d Color Usage In CSS
body { color: #fe835d; } p { color: rgb(254, 131, 93); } header { border-bottom:1px solid #fe835d; }