#265b49 Color
Color Codes | |
---|---|
Hex Code | #265b49 |
RGB Code | rgb(38, 91, 73) |
HSL Code | hsl(160, 41%, 25%) |
#265b49 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(38, 91, 73); }
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(160, 41%, 25%); }
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 #265b49
RGB Code | Hex Code | Preview |
---|---|---|
rgb(38, 91, 73, 10%) | #265b491a | |
rgb(38, 91, 73, 20%) | #265b4933 | |
rgb(38, 91, 73, 40%) | #265b494C | |
rgb(38, 91, 73, 60%) | #265b4999 | |
rgb(38, 91, 73, 80%) | #265b49CC | |
rgb(38, 91, 73, 100%) | #265b49FF |
Saturated and desaturated colors of #265b49
HSL Code | Preview |
---|---|
hsl(160, 10%, 25%) | |
hsl(160, 20%, 25%) | |
hsl(160, 40%, 25%) | |
hsl(160, 60%, 25%) | |
hsl(160, 80%, 25%) | |
hsl(160, 100%, 25%) |
#265b49 Color Usage In CSS
body { color: #265b49; } p { color: rgb(38, 91, 73); } header { border-bottom:1px solid #265b49; }