#f3b169 Color
Color Codes | |
---|---|
Hex Code | #f3b169 |
RGB Code | rgb(243, 177, 105) |
HSL Code | hsl(31, 85%, 68%) |
#f3b169 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 177, 105); }
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, 85%, 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 #f3b169
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 177, 105, 10%) | #f3b1691a | |
rgb(243, 177, 105, 20%) | #f3b16933 | |
rgb(243, 177, 105, 40%) | #f3b1694C | |
rgb(243, 177, 105, 60%) | #f3b16999 | |
rgb(243, 177, 105, 80%) | #f3b169CC | |
rgb(243, 177, 105, 100%) | #f3b169FF |
Saturated and desaturated colors of #f3b169
HSL Code | Preview |
---|---|
hsl(31, 10%, 68%) | |
hsl(31, 20%, 68%) | |
hsl(31, 40%, 68%) | |
hsl(31, 60%, 68%) | |
hsl(31, 80%, 68%) | |
hsl(31, 100%, 68%) |
#f3b169 Color Usage In CSS
body { color: #f3b169; } p { color: rgb(243, 177, 105); } header { border-bottom:1px solid #f3b169; }