#69768a Color
Color Codes | |
---|---|
Hex Code | #69768a |
RGB Code | rgb(105, 118, 138) |
HSL Code | hsl(216, 14%, 48%) |
#69768a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(105, 118, 138); }
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(216, 14%, 48%); }
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 #69768a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(105, 118, 138, 10%) | #69768a1a | |
rgb(105, 118, 138, 20%) | #69768a33 | |
rgb(105, 118, 138, 40%) | #69768a4C | |
rgb(105, 118, 138, 60%) | #69768a99 | |
rgb(105, 118, 138, 80%) | #69768aCC | |
rgb(105, 118, 138, 100%) | #69768aFF |
Saturated and desaturated colors of #69768a
HSL Code | Preview |
---|---|
hsl(216, 10%, 48%) | |
hsl(216, 20%, 48%) | |
hsl(216, 40%, 48%) | |
hsl(216, 60%, 48%) | |
hsl(216, 80%, 48%) | |
hsl(216, 100%, 48%) |
#69768a Color Usage In CSS
body { color: #69768a; } p { color: rgb(105, 118, 138); } header { border-bottom:1px solid #69768a; }