#f0b835 Color
Color Codes | |
---|---|
Hex Code | #f0b835 |
RGB Code | rgb(240, 184, 53) |
HSL Code | hsl(42, 86%, 57%) |
#f0b835 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(240, 184, 53); }
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(42, 86%, 57%); }
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 #f0b835
RGB Code | Hex Code | Preview |
---|---|---|
rgb(240, 184, 53, 10%) | #f0b8351a | |
rgb(240, 184, 53, 20%) | #f0b83533 | |
rgb(240, 184, 53, 40%) | #f0b8354C | |
rgb(240, 184, 53, 60%) | #f0b83599 | |
rgb(240, 184, 53, 80%) | #f0b835CC | |
rgb(240, 184, 53, 100%) | #f0b835FF |
Saturated and desaturated colors of #f0b835
HSL Code | Preview |
---|---|
hsl(42, 10%, 57%) | |
hsl(42, 20%, 57%) | |
hsl(42, 40%, 57%) | |
hsl(42, 60%, 57%) | |
hsl(42, 80%, 57%) | |
hsl(42, 100%, 57%) |
#f0b835 Color Usage In CSS
body { color: #f0b835; } p { color: rgb(240, 184, 53); } header { border-bottom:1px solid #f0b835; }