#69838f Color
Color Codes | |
---|---|
Hex Code | #69838f |
RGB Code | rgb(105, 131, 143) |
HSL Code | hsl(199, 15%, 49%) |
#69838f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(105, 131, 143); }
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(199, 15%, 49%); }
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 #69838f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(105, 131, 143, 10%) | #69838f1a | |
rgb(105, 131, 143, 20%) | #69838f33 | |
rgb(105, 131, 143, 40%) | #69838f4C | |
rgb(105, 131, 143, 60%) | #69838f99 | |
rgb(105, 131, 143, 80%) | #69838fCC | |
rgb(105, 131, 143, 100%) | #69838fFF |
Saturated and desaturated colors of #69838f
HSL Code | Preview |
---|---|
hsl(199, 10%, 49%) | |
hsl(199, 20%, 49%) | |
hsl(199, 40%, 49%) | |
hsl(199, 60%, 49%) | |
hsl(199, 80%, 49%) | |
hsl(199, 100%, 49%) |
#69838f Color Usage In CSS
body { color: #69838f; } p { color: rgb(105, 131, 143); } header { border-bottom:1px solid #69838f; }