#de4823 Color
Color Codes | |
---|---|
Hex Code | #de4823 |
RGB Code | rgb(222, 72, 35) |
HSL Code | hsl(12, 74%, 50%) |
#de4823 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 72, 35); }
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(12, 74%, 50%); }
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 #de4823
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 72, 35, 10%) | #de48231a | |
rgb(222, 72, 35, 20%) | #de482333 | |
rgb(222, 72, 35, 40%) | #de48234C | |
rgb(222, 72, 35, 60%) | #de482399 | |
rgb(222, 72, 35, 80%) | #de4823CC | |
rgb(222, 72, 35, 100%) | #de4823FF |
Saturated and desaturated colors of #de4823
HSL Code | Preview |
---|---|
hsl(12, 10%, 50%) | |
hsl(12, 20%, 50%) | |
hsl(12, 40%, 50%) | |
hsl(12, 60%, 50%) | |
hsl(12, 80%, 50%) | |
hsl(12, 100%, 50%) |
#de4823 Color Usage In CSS
body { color: #de4823; } p { color: rgb(222, 72, 35); } header { border-bottom:1px solid #de4823; }