#034f57 Color
Color Codes | |
---|---|
Hex Code | #034f57 |
RGB Code | rgb(03, 79, 87) |
HSL Code | hsl(186, 93%, 18%) |
#034f57 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(03, 79, 87); }
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(186, 93%, 18%); }
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 #034f57
RGB Code | Hex Code | Preview |
---|---|---|
rgb(03, 79, 87, 10%) | #034f571a | |
rgb(03, 79, 87, 20%) | #034f5733 | |
rgb(03, 79, 87, 40%) | #034f574C | |
rgb(03, 79, 87, 60%) | #034f5799 | |
rgb(03, 79, 87, 80%) | #034f57CC | |
rgb(03, 79, 87, 100%) | #034f57FF |
Saturated and desaturated colors of #034f57
HSL Code | Preview |
---|---|
hsl(186, 10%, 18%) | |
hsl(186, 20%, 18%) | |
hsl(186, 40%, 18%) | |
hsl(186, 60%, 18%) | |
hsl(186, 80%, 18%) | |
hsl(186, 100%, 18%) |
#034f57 Color Usage In CSS
body { color: #034f57; } p { color: rgb(03, 79, 87); } header { border-bottom:1px solid #034f57; }