#008268 Color
Color Codes | |
---|---|
Hex Code | #008268 |
RGB Code | rgb(00, 130, 104) |
HSL Code | hsl(168, 100%, 25%) |
#008268 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(00, 130, 104); }
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(168, 100%, 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 #008268
RGB Code | Hex Code | Preview |
---|---|---|
rgb(00, 130, 104, 10%) | #0082681a | |
rgb(00, 130, 104, 20%) | #00826833 | |
rgb(00, 130, 104, 40%) | #0082684C | |
rgb(00, 130, 104, 60%) | #00826899 | |
rgb(00, 130, 104, 80%) | #008268CC | |
rgb(00, 130, 104, 100%) | #008268FF |
Saturated and desaturated colors of #008268
HSL Code | Preview |
---|---|
hsl(168, 10%, 25%) | |
hsl(168, 20%, 25%) | |
hsl(168, 40%, 25%) | |
hsl(168, 60%, 25%) | |
hsl(168, 80%, 25%) | |
hsl(168, 100%, 25%) |
#008268 Color Usage In CSS
body { color: #008268; } p { color: rgb(00, 130, 104); } header { border-bottom:1px solid #008268; }