#635de5 Color
Color Codes | |
---|---|
Hex Code | #635de5 |
RGB Code | rgb(99, 93, 229) |
HSL Code | hsl(243, 72%, 63%) |
#635de5 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(99, 93, 229); }
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%, 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 #635de5
RGB Code | Hex Code | Preview |
---|---|---|
rgb(99, 93, 229, 10%) | #635de51a | |
rgb(99, 93, 229, 20%) | #635de533 | |
rgb(99, 93, 229, 40%) | #635de54C | |
rgb(99, 93, 229, 60%) | #635de599 | |
rgb(99, 93, 229, 80%) | #635de5CC | |
rgb(99, 93, 229, 100%) | #635de5FF |
Saturated and desaturated colors of #635de5
HSL Code | Preview |
---|---|
hsl(243, 10%, 63%) | |
hsl(243, 20%, 63%) | |
hsl(243, 40%, 63%) | |
hsl(243, 60%, 63%) | |
hsl(243, 80%, 63%) | |
hsl(243, 100%, 63%) |
#635de5 Color Usage In CSS
body { color: #635de5; } p { color: rgb(99, 93, 229); } header { border-bottom:1px solid #635de5; }