#b68a68 Color
Color Codes | |
---|---|
Hex Code | #b68a68 |
RGB Code | rgb(182, 138, 104) |
HSL Code | hsl(26, 35%, 56%) |
#b68a68 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(182, 138, 104); }
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(26, 35%, 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 #b68a68
RGB Code | Hex Code | Preview |
---|---|---|
rgb(182, 138, 104, 10%) | #b68a681a | |
rgb(182, 138, 104, 20%) | #b68a6833 | |
rgb(182, 138, 104, 40%) | #b68a684C | |
rgb(182, 138, 104, 60%) | #b68a6899 | |
rgb(182, 138, 104, 80%) | #b68a68CC | |
rgb(182, 138, 104, 100%) | #b68a68FF |
Saturated and desaturated colors of #b68a68
HSL Code | Preview |
---|---|
hsl(26, 10%, 56%) | |
hsl(26, 20%, 56%) | |
hsl(26, 40%, 56%) | |
hsl(26, 60%, 56%) | |
hsl(26, 80%, 56%) | |
hsl(26, 100%, 56%) |
#b68a68 Color Usage In CSS
body { color: #b68a68; } p { color: rgb(182, 138, 104); } header { border-bottom:1px solid #b68a68; }