#243450 Color
Color Codes | |
---|---|
Hex Code | #243450 |
RGB Code | rgb(36, 52, 80) |
HSL Code | hsl(218, 38%, 23%) |
#243450 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(36, 52, 80); }
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(218, 38%, 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 #243450
RGB Code | Hex Code | Preview |
---|---|---|
rgb(36, 52, 80, 10%) | #2434501a | |
rgb(36, 52, 80, 20%) | #24345033 | |
rgb(36, 52, 80, 40%) | #2434504C | |
rgb(36, 52, 80, 60%) | #24345099 | |
rgb(36, 52, 80, 80%) | #243450CC | |
rgb(36, 52, 80, 100%) | #243450FF |
Saturated and desaturated colors of #243450
HSL Code | Preview |
---|---|
hsl(218, 10%, 23%) | |
hsl(218, 20%, 23%) | |
hsl(218, 40%, 23%) | |
hsl(218, 60%, 23%) | |
hsl(218, 80%, 23%) | |
hsl(218, 100%, 23%) |
#243450 Color Usage In CSS
body { color: #243450; } p { color: rgb(36, 52, 80); } header { border-bottom:1px solid #243450; }