#2b635f Color
Color Codes | |
---|---|
Hex Code | #2b635f |
RGB Code | rgb(43, 99, 95) |
HSL Code | hsl(176, 39%, 28%) |
#2b635f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(43, 99, 95); }
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(176, 39%, 28%); }
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 #2b635f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(43, 99, 95, 10%) | #2b635f1a | |
rgb(43, 99, 95, 20%) | #2b635f33 | |
rgb(43, 99, 95, 40%) | #2b635f4C | |
rgb(43, 99, 95, 60%) | #2b635f99 | |
rgb(43, 99, 95, 80%) | #2b635fCC | |
rgb(43, 99, 95, 100%) | #2b635fFF |
Saturated and desaturated colors of #2b635f
HSL Code | Preview |
---|---|
hsl(176, 10%, 28%) | |
hsl(176, 20%, 28%) | |
hsl(176, 40%, 28%) | |
hsl(176, 60%, 28%) | |
hsl(176, 80%, 28%) | |
hsl(176, 100%, 28%) |
#2b635f Color Usage In CSS
body { color: #2b635f; } p { color: rgb(43, 99, 95); } header { border-bottom:1px solid #2b635f; }