#623599 Color
Color Codes | |
---|---|
Hex Code | #623599 |
RGB Code | rgb(98, 53, 153) |
HSL Code | hsl(267, 49%, 40%) |
#623599 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(98, 53, 153); }
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(267, 49%, 40%); }
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 #623599
RGB Code | Hex Code | Preview |
---|---|---|
rgb(98, 53, 153, 10%) | #6235991a | |
rgb(98, 53, 153, 20%) | #62359933 | |
rgb(98, 53, 153, 40%) | #6235994C | |
rgb(98, 53, 153, 60%) | #62359999 | |
rgb(98, 53, 153, 80%) | #623599CC | |
rgb(98, 53, 153, 100%) | #623599FF |
Saturated and desaturated colors of #623599
HSL Code | Preview |
---|---|
hsl(267, 10%, 40%) | |
hsl(267, 20%, 40%) | |
hsl(267, 40%, 40%) | |
hsl(267, 60%, 40%) | |
hsl(267, 80%, 40%) | |
hsl(267, 100%, 40%) |
#623599 Color Usage In CSS
body { color: #623599; } p { color: rgb(98, 53, 153); } header { border-bottom:1px solid #623599; }