#0d6599 Color
Color Codes | |
---|---|
Hex Code | #0d6599 |
RGB Code | rgb(13, 101, 153) |
HSL Code | hsl(202, 84%, 33%) |
#0d6599 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(13, 101, 153); }
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(202, 84%, 33%); }
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 #0d6599
RGB Code | Hex Code | Preview |
---|---|---|
rgb(13, 101, 153, 10%) | #0d65991a | |
rgb(13, 101, 153, 20%) | #0d659933 | |
rgb(13, 101, 153, 40%) | #0d65994C | |
rgb(13, 101, 153, 60%) | #0d659999 | |
rgb(13, 101, 153, 80%) | #0d6599CC | |
rgb(13, 101, 153, 100%) | #0d6599FF |
Saturated and desaturated colors of #0d6599
HSL Code | Preview |
---|---|
hsl(202, 10%, 33%) | |
hsl(202, 20%, 33%) | |
hsl(202, 40%, 33%) | |
hsl(202, 60%, 33%) | |
hsl(202, 80%, 33%) | |
hsl(202, 100%, 33%) |
#0d6599 Color Usage In CSS
body { color: #0d6599; } p { color: rgb(13, 101, 153); } header { border-bottom:1px solid #0d6599; }