#267982 Color
Color Codes | |
---|---|
Hex Code | #267982 |
RGB Code | rgb(38, 121, 130) |
HSL Code | hsl(186, 55%, 33%) |
#267982 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(38, 121, 130); }
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, 55%, 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 #267982
RGB Code | Hex Code | Preview |
---|---|---|
rgb(38, 121, 130, 10%) | #2679821a | |
rgb(38, 121, 130, 20%) | #26798233 | |
rgb(38, 121, 130, 40%) | #2679824C | |
rgb(38, 121, 130, 60%) | #26798299 | |
rgb(38, 121, 130, 80%) | #267982CC | |
rgb(38, 121, 130, 100%) | #267982FF |
Saturated and desaturated colors of #267982
HSL Code | Preview |
---|---|
hsl(186, 10%, 33%) | |
hsl(186, 20%, 33%) | |
hsl(186, 40%, 33%) | |
hsl(186, 60%, 33%) | |
hsl(186, 80%, 33%) | |
hsl(186, 100%, 33%) |
#267982 Color Usage In CSS
body { color: #267982; } p { color: rgb(38, 121, 130); } header { border-bottom:1px solid #267982; }