#05384b Color
Color Codes | |
---|---|
Hex Code | #05384b |
RGB Code | rgb(05, 56, 75) |
HSL Code | hsl(196, 88%, 16%) |
#05384b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 56, 75); }
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(196, 88%, 16%); }
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 #05384b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 56, 75, 10%) | #05384b1a | |
rgb(05, 56, 75, 20%) | #05384b33 | |
rgb(05, 56, 75, 40%) | #05384b4C | |
rgb(05, 56, 75, 60%) | #05384b99 | |
rgb(05, 56, 75, 80%) | #05384bCC | |
rgb(05, 56, 75, 100%) | #05384bFF |
Saturated and desaturated colors of #05384b
HSL Code | Preview |
---|---|
hsl(196, 10%, 16%) | |
hsl(196, 20%, 16%) | |
hsl(196, 40%, 16%) | |
hsl(196, 60%, 16%) | |
hsl(196, 80%, 16%) | |
hsl(196, 100%, 16%) |
#05384b Color Usage In CSS
body { color: #05384b; } p { color: rgb(05, 56, 75); } header { border-bottom:1px solid #05384b; }