#6fa48c Color
Color Codes | |
---|---|
Hex Code | #6fa48c |
RGB Code | rgb(111, 164, 140) |
HSL Code | hsl(153, 23%, 54%) |
#6fa48c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(111, 164, 140); }
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(153, 23%, 54%); }
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 #6fa48c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(111, 164, 140, 10%) | #6fa48c1a | |
rgb(111, 164, 140, 20%) | #6fa48c33 | |
rgb(111, 164, 140, 40%) | #6fa48c4C | |
rgb(111, 164, 140, 60%) | #6fa48c99 | |
rgb(111, 164, 140, 80%) | #6fa48cCC | |
rgb(111, 164, 140, 100%) | #6fa48cFF |
Saturated and desaturated colors of #6fa48c
HSL Code | Preview |
---|---|
hsl(153, 10%, 54%) | |
hsl(153, 20%, 54%) | |
hsl(153, 40%, 54%) | |
hsl(153, 60%, 54%) | |
hsl(153, 80%, 54%) | |
hsl(153, 100%, 54%) |
#6fa48c Color Usage In CSS
body { color: #6fa48c; } p { color: rgb(111, 164, 140); } header { border-bottom:1px solid #6fa48c; }