#702369 Color
Color Codes | |
---|---|
Hex Code | #702369 |
RGB Code | rgb(112, 35, 105) |
HSL Code | hsl(305, 52%, 29%) |
#702369 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(112, 35, 105); }
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(305, 52%, 29%); }
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 #702369
RGB Code | Hex Code | Preview |
---|---|---|
rgb(112, 35, 105, 10%) | #7023691a | |
rgb(112, 35, 105, 20%) | #70236933 | |
rgb(112, 35, 105, 40%) | #7023694C | |
rgb(112, 35, 105, 60%) | #70236999 | |
rgb(112, 35, 105, 80%) | #702369CC | |
rgb(112, 35, 105, 100%) | #702369FF |
Saturated and desaturated colors of #702369
HSL Code | Preview |
---|---|
hsl(305, 10%, 29%) | |
hsl(305, 20%, 29%) | |
hsl(305, 40%, 29%) | |
hsl(305, 60%, 29%) | |
hsl(305, 80%, 29%) | |
hsl(305, 100%, 29%) |
#702369 Color Usage In CSS
body { color: #702369; } p { color: rgb(112, 35, 105); } header { border-bottom:1px solid #702369; }