#6f69e7 Color
Color Codes | |
---|---|
Hex Code | #6f69e7 |
RGB Code | rgb(111, 105, 231) |
HSL Code | hsl(243, 72%, 66%) |
#6f69e7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(111, 105, 231); }
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(243, 72%, 66%); }
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 #6f69e7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(111, 105, 231, 10%) | #6f69e71a | |
rgb(111, 105, 231, 20%) | #6f69e733 | |
rgb(111, 105, 231, 40%) | #6f69e74C | |
rgb(111, 105, 231, 60%) | #6f69e799 | |
rgb(111, 105, 231, 80%) | #6f69e7CC | |
rgb(111, 105, 231, 100%) | #6f69e7FF |
Saturated and desaturated colors of #6f69e7
HSL Code | Preview |
---|---|
hsl(243, 10%, 66%) | |
hsl(243, 20%, 66%) | |
hsl(243, 40%, 66%) | |
hsl(243, 60%, 66%) | |
hsl(243, 80%, 66%) | |
hsl(243, 100%, 66%) |
#6f69e7 Color Usage In CSS
body { color: #6f69e7; } p { color: rgb(111, 105, 231); } header { border-bottom:1px solid #6f69e7; }