#695ce6 Color
Color Codes | |
---|---|
Hex Code | #695ce6 |
RGB Code | rgb(105, 92, 230) |
HSL Code | hsl(246, 73%, 63%) |
#695ce6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(105, 92, 230); }
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(246, 73%, 63%); }
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 #695ce6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(105, 92, 230, 10%) | #695ce61a | |
rgb(105, 92, 230, 20%) | #695ce633 | |
rgb(105, 92, 230, 40%) | #695ce64C | |
rgb(105, 92, 230, 60%) | #695ce699 | |
rgb(105, 92, 230, 80%) | #695ce6CC | |
rgb(105, 92, 230, 100%) | #695ce6FF |
Saturated and desaturated colors of #695ce6
HSL Code | Preview |
---|---|
hsl(246, 10%, 63%) | |
hsl(246, 20%, 63%) | |
hsl(246, 40%, 63%) | |
hsl(246, 60%, 63%) | |
hsl(246, 80%, 63%) | |
hsl(246, 100%, 63%) |
#695ce6 Color Usage In CSS
body { color: #695ce6; } p { color: rgb(105, 92, 230); } header { border-bottom:1px solid #695ce6; }