HEX: #A4ACDA
RGB: (164,172,218)
#A4ACDA contains red, green and blue colors in about the same proportion. Web safe color of #A4ACDA is #9999CC (or #99C).
#A4ACDA color RGB value is (164,172,218).
RGB: (164,172,218) (64%,67%,85%)
R 164 of 255 = 64%
G 172 of 255 = 67%
B 218 of 255 = 85%
R + G + B ~ 72%. #A4ACDA is quite light color.
R + G + B =
164 + 172 + 218 = 554 (100%)
R 164 of 554 ~ 29.6%
G 172 of 554 ~ 31.05%
B 218 of 554 ~ 39.35%
#A4ACDA color CMYK value is (25,21,0,15).
CMYK: (25,21,0,15) C25M21Y0K15 (25%,21%,0%,15%) (0.25/0.21/0.00/0.15)
A4 | AC | DA | |
---|---|---|---|
RGB | 164 | 172 | 218 |
HSL | 231° | 42.19% | 74.90% |
HSB/HSV | 231° | 24.77% | 85.49% |
CMYK | 24.77% | 21.10% | 0.00% |
14.51% |
HEX | A4 | AC | DA |
Decimal | 164 | 172 | 218 |
Binary | 10100100 | 10101100 | 11011010 |
Octal | 244 | 254 | 332 |
Examples of css and html codes for elements with #A4ACDA color. Also use rgb(164,172,218) instead hex code.
.myTextColor { color: #A4ACDA; }
<p style="color:#A4ACDA">This sample text font color is #A4ACDA.</p>
This text font color is #A4ACDA.
.myBgColor { background-color: #A4ACDA; }
<div style="background-color:#A4ACDA">Inner text</div>
This div background color is #A4ACDA.
.myBorderColor { border: 1px solid #A4ACDA; }
<div style="border:3px solid #A4ACDA">Div</div>
This div border color is #A4ACDA.
.myOpacity80 { color: #A4ACDA; opacity: 0.8; }
<p style="color:#A4ACDA;opacity:0.8;">80%</p>
Text with #A4ACDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4ACDA;}
<p style="text-shadow: 3px 3px 1px #A4ACDA">Text here.</p>
This text has shadow with #A4ACDA color.
.textShadow {text-shadow: 3px 3px 1px #A4ACDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4ACDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4ACDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4ACDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4ACDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4ACDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4ACDA; -webkit-box-shadow: 1px 1px 3px 2px #A4ACDA; box-shadow: 1px 1px 3px 2px #A4ACDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4ACDA; -webkit-box-shadow: 1px 1px 3px 2px #A4ACDA; box-shadow:1px 1px 3px 2px #A4ACDA;">
Div content here</div>
This text has color #A4ACDA on black background.
This text has color #A4ACDA on white background.
This text has black color on #A4ACDA background.
This text has white color on #A4ACDA background.