HEX: #ACA8E1
RGB: (172,168,225)
#ACA8E1 contains red, green and blue colors in about the same proportion. Web safe color of #ACA8E1 is #9999CC (or #99C).
#ACA8E1 color RGB value is (172,168,225).
RGB: (172,168,225) (67%,66%,88%)
R 172 of 255 = 67%
G 168 of 255 = 66%
B 225 of 255 = 88%
R + G + B ~ 74%. #ACA8E1 is quite light color.
R + G + B =
172 + 168 + 225 = 565 (100%)
R 172 of 565 ~ 30.44%
G 168 of 565 ~ 29.73%
B 225 of 565 ~ 39.82%
#ACA8E1 color CMYK value is (24,25,0,12).
CMYK: (24,25,0,12) C24M25Y0K12 (24%,25%,0%,12%) (0.24/0.25/0.00/0.12)
AC | A8 | E1 | |
---|---|---|---|
RGB | 172 | 168 | 225 |
HSL | 244° | 48.72% | 77.06% |
HSB/HSV | 244° | 25.33% | 88.24% |
CMYK | 23.56% | 25.33% | 0.00% |
11.76% |
HEX | AC | A8 | E1 |
Decimal | 172 | 168 | 225 |
Binary | 10101100 | 10101000 | 11100001 |
Octal | 254 | 250 | 341 |
Examples of css and html codes for elements with #ACA8E1 color. Also use rgb(172,168,225) instead hex code.
.myTextColor { color: #ACA8E1; }
<p style="color:#ACA8E1">This sample text font color is #ACA8E1.</p>
This text font color is #ACA8E1.
.myBgColor { background-color: #ACA8E1; }
<div style="background-color:#ACA8E1">Inner text</div>
This div background color is #ACA8E1.
.myBorderColor { border: 1px solid #ACA8E1; }
<div style="border:3px solid #ACA8E1">Div</div>
This div border color is #ACA8E1.
.myOpacity80 { color: #ACA8E1; opacity: 0.8; }
<p style="color:#ACA8E1;opacity:0.8;">80%</p>
Text with #ACA8E1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ACA8E1;}
<p style="text-shadow: 3px 3px 1px #ACA8E1">Text here.</p>
This text has shadow with #ACA8E1 color.
.textShadow {text-shadow: 3px 3px 1px #ACA8E1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ACA8E1, 5px 5px 20px red">Text here.</p>
This text has shadow with #ACA8E1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ACA8E1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ACA8E1, Direction=45, Strength=4)">Text</p>
This text has shadow with #ACA8E1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ACA8E1; -webkit-box-shadow: 1px 1px 3px 2px #ACA8E1; box-shadow: 1px 1px 3px 2px #ACA8E1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ACA8E1; -webkit-box-shadow: 1px 1px 3px 2px #ACA8E1; box-shadow:1px 1px 3px 2px #ACA8E1;">
Div content here</div>
This text has color #ACA8E1 on black background.
This text has color #ACA8E1 on white background.
This text has black color on #ACA8E1 background.
This text has white color on #ACA8E1 background.