HEX: #ACA4DC
RGB: (172,164,220)
#ACA4DC contains red, green and blue colors in about the same proportion. Web safe color of #ACA4DC is #9999CC (or #99C).
#ACA4DC color RGB value is (172,164,220).
RGB: (172,164,220) (67%,64%,86%)
R 172 of 255 = 67%
G 164 of 255 = 64%
B 220 of 255 = 86%
R + G + B ~ 72%. #ACA4DC is quite light color.
R + G + B =
172 + 164 + 220 = 556 (100%)
R 172 of 556 ~ 30.94%
G 164 of 556 ~ 29.5%
B 220 of 556 ~ 39.57%
#ACA4DC color CMYK value is (22,25,0,14).
CMYK: (22,25,0,14) C22M25Y0K14 (22%,25%,0%,14%) (0.22/0.25/0.00/0.14)
AC | A4 | DC | |
---|---|---|---|
RGB | 172 | 164 | 220 |
HSL | 249° | 44.44% | 75.29% |
HSB/HSV | 249° | 25.45% | 86.27% |
CMYK | 21.82% | 25.45% | 0.00% |
13.73% |
HEX | AC | A4 | DC |
Decimal | 172 | 164 | 220 |
Binary | 10101100 | 10100100 | 11011100 |
Octal | 254 | 244 | 334 |
Examples of css and html codes for elements with #ACA4DC color. Also use rgb(172,164,220) instead hex code.
.myTextColor { color: #ACA4DC; }
<p style="color:#ACA4DC">This sample text font color is #ACA4DC.</p>
This text font color is #ACA4DC.
.myBgColor { background-color: #ACA4DC; }
<div style="background-color:#ACA4DC">Inner text</div>
This div background color is #ACA4DC.
.myBorderColor { border: 1px solid #ACA4DC; }
<div style="border:3px solid #ACA4DC">Div</div>
This div border color is #ACA4DC.
.myOpacity80 { color: #ACA4DC; opacity: 0.8; }
<p style="color:#ACA4DC;opacity:0.8;">80%</p>
Text with #ACA4DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACA4DC;}
<p style="text-shadow: 3px 3px 1px #ACA4DC">Text here.</p>
This text has shadow with #ACA4DC color.
.textShadow {text-shadow: 3px 3px 1px #ACA4DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACA4DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACA4DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACA4DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACA4DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACA4DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACA4DC; -webkit-box-shadow: 1px 1px 3px 2px #ACA4DC; box-shadow: 1px 1px 3px 2px #ACA4DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACA4DC; -webkit-box-shadow: 1px 1px 3px 2px #ACA4DC; box-shadow:1px 1px 3px 2px #ACA4DC;">
Div content here</div>
This text has color #ACA4DC on black background.
This text has color #ACA4DC on white background.
This text has black color on #ACA4DC background.
This text has white color on #ACA4DC background.