#f68850 Color
Color Codes | |
---|---|
Hex Code | #f68850 |
RGB Code | rgb(246, 136, 80) |
HSL Code | hsl(20, 90%, 64%) |
#f68850 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 136, 80); }
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, 90%, 64%); }
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 #f68850
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 136, 80, 10%) | #f688501a | |
rgb(246, 136, 80, 20%) | #f6885033 | |
rgb(246, 136, 80, 40%) | #f688504C | |
rgb(246, 136, 80, 60%) | #f6885099 | |
rgb(246, 136, 80, 80%) | #f68850CC | |
rgb(246, 136, 80, 100%) | #f68850FF |
Saturated and desaturated colors of #f68850
HSL Code | Preview |
---|---|
hsl(20, 10%, 64%) | |
hsl(20, 20%, 64%) | |
hsl(20, 40%, 64%) | |
hsl(20, 60%, 64%) | |
hsl(20, 80%, 64%) | |
hsl(20, 100%, 64%) |
#f68850 Color Usage In CSS
body { color: #f68850; } p { color: rgb(246, 136, 80); } header { border-bottom:1px solid #f68850; }