#384a63 Color
Color Codes | |
---|---|
Hex Code | #384a63 |
RGB Code | rgb(56, 74, 99) |
HSL Code | hsl(215, 28%, 30%) |
#384a63 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(56, 74, 99); }
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(215, 28%, 30%); }
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 #384a63
RGB Code | Hex Code | Preview |
---|---|---|
rgb(56, 74, 99, 10%) | #384a631a | |
rgb(56, 74, 99, 20%) | #384a6333 | |
rgb(56, 74, 99, 40%) | #384a634C | |
rgb(56, 74, 99, 60%) | #384a6399 | |
rgb(56, 74, 99, 80%) | #384a63CC | |
rgb(56, 74, 99, 100%) | #384a63FF |
Saturated and desaturated colors of #384a63
HSL Code | Preview |
---|---|
hsl(215, 10%, 30%) | |
hsl(215, 20%, 30%) | |
hsl(215, 40%, 30%) | |
hsl(215, 60%, 30%) | |
hsl(215, 80%, 30%) | |
hsl(215, 100%, 30%) |
#384a63 Color Usage In CSS
body { color: #384a63; } p { color: rgb(56, 74, 99); } header { border-bottom:1px solid #384a63; }