#1a6d65 Color
Color Codes | |
---|---|
Hex Code | #1a6d65 |
RGB Code | rgb(26, 109, 101) |
HSL Code | hsl(174, 61%, 26%) |
#1a6d65 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(26, 109, 101); }
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(174, 61%, 26%); }
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 #1a6d65
RGB Code | Hex Code | Preview |
---|---|---|
rgb(26, 109, 101, 10%) | #1a6d651a | |
rgb(26, 109, 101, 20%) | #1a6d6533 | |
rgb(26, 109, 101, 40%) | #1a6d654C | |
rgb(26, 109, 101, 60%) | #1a6d6599 | |
rgb(26, 109, 101, 80%) | #1a6d65CC | |
rgb(26, 109, 101, 100%) | #1a6d65FF |
Saturated and desaturated colors of #1a6d65
HSL Code | Preview |
---|---|
hsl(174, 10%, 26%) | |
hsl(174, 20%, 26%) | |
hsl(174, 40%, 26%) | |
hsl(174, 60%, 26%) | |
hsl(174, 80%, 26%) | |
hsl(174, 100%, 26%) |
#1a6d65 Color Usage In CSS
body { color: #1a6d65; } p { color: rgb(26, 109, 101); } header { border-bottom:1px solid #1a6d65; }