#266436 Color
Color Codes | |
---|---|
Hex Code | #266436 |
RGB Code | rgb(38, 100, 54) |
HSL Code | hsl(135, 45%, 27%) |
#266436 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(38, 100, 54); }
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(135, 45%, 27%); }
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 #266436
RGB Code | Hex Code | Preview |
---|---|---|
rgb(38, 100, 54, 10%) | #2664361a | |
rgb(38, 100, 54, 20%) | #26643633 | |
rgb(38, 100, 54, 40%) | #2664364C | |
rgb(38, 100, 54, 60%) | #26643699 | |
rgb(38, 100, 54, 80%) | #266436CC | |
rgb(38, 100, 54, 100%) | #266436FF |
Saturated and desaturated colors of #266436
HSL Code | Preview |
---|---|
hsl(135, 10%, 27%) | |
hsl(135, 20%, 27%) | |
hsl(135, 40%, 27%) | |
hsl(135, 60%, 27%) | |
hsl(135, 80%, 27%) | |
hsl(135, 100%, 27%) |
#266436 Color Usage In CSS
body { color: #266436; } p { color: rgb(38, 100, 54); } header { border-bottom:1px solid #266436; }