#f69128 Color
Color Codes | |
---|---|
Hex Code | #f69128 |
RGB Code | rgb(246, 145, 40) |
HSL Code | hsl(31, 92%, 56%) |
#f69128 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 145, 40); }
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(31, 92%, 56%); }
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 #f69128
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 145, 40, 10%) | #f691281a | |
rgb(246, 145, 40, 20%) | #f6912833 | |
rgb(246, 145, 40, 40%) | #f691284C | |
rgb(246, 145, 40, 60%) | #f6912899 | |
rgb(246, 145, 40, 80%) | #f69128CC | |
rgb(246, 145, 40, 100%) | #f69128FF |
Saturated and desaturated colors of #f69128
HSL Code | Preview |
---|---|
hsl(31, 10%, 56%) | |
hsl(31, 20%, 56%) | |
hsl(31, 40%, 56%) | |
hsl(31, 60%, 56%) | |
hsl(31, 80%, 56%) | |
hsl(31, 100%, 56%) |
#f69128 Color Usage In CSS
body { color: #f69128; } p { color: rgb(246, 145, 40); } header { border-bottom:1px solid #f69128; }