#453287 Color
Color Codes | |
---|---|
Hex Code | #453287 |
RGB Code | rgb(69, 50, 135) |
HSL Code | hsl(253, 46%, 36%) |
#453287 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(69, 50, 135); }
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(253, 46%, 36%); }
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 #453287
RGB Code | Hex Code | Preview |
---|---|---|
rgb(69, 50, 135, 10%) | #4532871a | |
rgb(69, 50, 135, 20%) | #45328733 | |
rgb(69, 50, 135, 40%) | #4532874C | |
rgb(69, 50, 135, 60%) | #45328799 | |
rgb(69, 50, 135, 80%) | #453287CC | |
rgb(69, 50, 135, 100%) | #453287FF |
Saturated and desaturated colors of #453287
HSL Code | Preview |
---|---|
hsl(253, 10%, 36%) | |
hsl(253, 20%, 36%) | |
hsl(253, 40%, 36%) | |
hsl(253, 60%, 36%) | |
hsl(253, 80%, 36%) | |
hsl(253, 100%, 36%) |
#453287 Color Usage In CSS
body { color: #453287; } p { color: rgb(69, 50, 135); } header { border-bottom:1px solid #453287; }