#f4b769 Color
Color Codes | |
---|---|
Hex Code | #f4b769 |
RGB Code | rgb(244, 183, 105) |
HSL Code | hsl(34, 86%, 68%) |
#f4b769 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(244, 183, 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(34, 86%, 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 #f4b769
RGB Code | Hex Code | Preview |
---|---|---|
rgb(244, 183, 105, 10%) | #f4b7691a | |
rgb(244, 183, 105, 20%) | #f4b76933 | |
rgb(244, 183, 105, 40%) | #f4b7694C | |
rgb(244, 183, 105, 60%) | #f4b76999 | |
rgb(244, 183, 105, 80%) | #f4b769CC | |
rgb(244, 183, 105, 100%) | #f4b769FF |
Saturated and desaturated colors of #f4b769
HSL Code | Preview |
---|---|
hsl(34, 10%, 68%) | |
hsl(34, 20%, 68%) | |
hsl(34, 40%, 68%) | |
hsl(34, 60%, 68%) | |
hsl(34, 80%, 68%) | |
hsl(34, 100%, 68%) |
#f4b769 Color Usage In CSS
body { color: #f4b769; } p { color: rgb(244, 183, 105); } header { border-bottom:1px solid #f4b769; }