#033841 Color
Color Codes | |
---|---|
Hex Code | #033841 |
RGB Code | rgb(03, 56, 65) |
HSL Code | hsl(189, 91%, 13%) |
#033841 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(03, 56, 65); }
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(189, 91%, 13%); }
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 #033841
RGB Code | Hex Code | Preview |
---|---|---|
rgb(03, 56, 65, 10%) | #0338411a | |
rgb(03, 56, 65, 20%) | #03384133 | |
rgb(03, 56, 65, 40%) | #0338414C | |
rgb(03, 56, 65, 60%) | #03384199 | |
rgb(03, 56, 65, 80%) | #033841CC | |
rgb(03, 56, 65, 100%) | #033841FF |
Saturated and desaturated colors of #033841
HSL Code | Preview |
---|---|
hsl(189, 10%, 13%) | |
hsl(189, 20%, 13%) | |
hsl(189, 40%, 13%) | |
hsl(189, 60%, 13%) | |
hsl(189, 80%, 13%) | |
hsl(189, 100%, 13%) |
#033841 Color Usage In CSS
body { color: #033841; } p { color: rgb(03, 56, 65); } header { border-bottom:1px solid #033841; }