#141360 Color
Color Codes | |
---|---|
Hex Code | #141360 |
RGB Code | rgb(20, 19, 96) |
HSL Code | hsl(241, 67%, 23%) |
#141360 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(20, 19, 96); }
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(241, 67%, 23%); }
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 #141360
RGB Code | Hex Code | Preview |
---|---|---|
rgb(20, 19, 96, 10%) | #1413601a | |
rgb(20, 19, 96, 20%) | #14136033 | |
rgb(20, 19, 96, 40%) | #1413604C | |
rgb(20, 19, 96, 60%) | #14136099 | |
rgb(20, 19, 96, 80%) | #141360CC | |
rgb(20, 19, 96, 100%) | #141360FF |
Saturated and desaturated colors of #141360
HSL Code | Preview |
---|---|
hsl(241, 10%, 23%) | |
hsl(241, 20%, 23%) | |
hsl(241, 40%, 23%) | |
hsl(241, 60%, 23%) | |
hsl(241, 80%, 23%) | |
hsl(241, 100%, 23%) |
#141360 Color Usage In CSS
body { color: #141360; } p { color: rgb(20, 19, 96); } header { border-bottom:1px solid #141360; }