#243de2 Color
Color Codes | |
---|---|
Hex Code | #243de2 |
RGB Code | rgb(36, 61, 226) |
HSL Code | hsl(232, 77%, 51%) |
#243de2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(36, 61, 226); }
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(232, 77%, 51%); }
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 #243de2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(36, 61, 226, 10%) | #243de21a | |
rgb(36, 61, 226, 20%) | #243de233 | |
rgb(36, 61, 226, 40%) | #243de24C | |
rgb(36, 61, 226, 60%) | #243de299 | |
rgb(36, 61, 226, 80%) | #243de2CC | |
rgb(36, 61, 226, 100%) | #243de2FF |
Saturated and desaturated colors of #243de2
HSL Code | Preview |
---|---|
hsl(232, 10%, 51%) | |
hsl(232, 20%, 51%) | |
hsl(232, 40%, 51%) | |
hsl(232, 60%, 51%) | |
hsl(232, 80%, 51%) | |
hsl(232, 100%, 51%) |
#243de2 Color Usage In CSS
body { color: #243de2; } p { color: rgb(36, 61, 226); } header { border-bottom:1px solid #243de2; }