#06185a Color
Color Codes | |
---|---|
Hex Code | #06185a |
RGB Code | rgb(06, 24, 90) |
HSL Code | hsl(227, 88%, 19%) |
#06185a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(06, 24, 90); }
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(227, 88%, 19%); }
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 #06185a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(06, 24, 90, 10%) | #06185a1a | |
rgb(06, 24, 90, 20%) | #06185a33 | |
rgb(06, 24, 90, 40%) | #06185a4C | |
rgb(06, 24, 90, 60%) | #06185a99 | |
rgb(06, 24, 90, 80%) | #06185aCC | |
rgb(06, 24, 90, 100%) | #06185aFF |
Saturated and desaturated colors of #06185a
HSL Code | Preview |
---|---|
hsl(227, 10%, 19%) | |
hsl(227, 20%, 19%) | |
hsl(227, 40%, 19%) | |
hsl(227, 60%, 19%) | |
hsl(227, 80%, 19%) | |
hsl(227, 100%, 19%) |
#06185a Color Usage In CSS
body { color: #06185a; } p { color: rgb(06, 24, 90); } header { border-bottom:1px solid #06185a; }