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