HEX: #A994DC
RGB: (169,148,220)
#A994DC contains mainly red and blue colors. Web safe color of #A994DC is #9999CC (or #99C).
#A994DC color RGB value is (169,148,220).
RGB: (169,148,220) (66%,58%,86%)
R 169 of 255 = 66%
G 148 of 255 = 58%
B 220 of 255 = 86%
R + G + B ~ 70%. #A994DC is quite light color.
R + G + B =
169 + 148 + 220 = 537 (100%)
R 169 of 537 ~ 31.47%
G 148 of 537 ~ 27.56%
B 220 of 537 ~ 40.97%
#A994DC color CMYK value is (23,33,0,14).
CMYK: (23,33,0,14) C23M33Y0K14 (23%,33%,0%,14%) (0.23/0.33/0.00/0.14)
A9 | 94 | DC | |
---|---|---|---|
RGB | 169 | 148 | 220 |
HSL | 258° | 50.70% | 72.16% |
HSB/HSV | 258° | 32.73% | 86.27% |
CMYK | 23.18% | 32.73% | 0.00% |
13.73% |
HEX | A9 | 94 | DC |
Decimal | 169 | 148 | 220 |
Binary | 10101001 | 10010100 | 11011100 |
Octal | 251 | 224 | 334 |
Examples of css and html codes for elements with #A994DC color. Also use rgb(169,148,220) instead hex code.
.myTextColor { color: #A994DC; }
<p style="color:#A994DC">This sample text font color is #A994DC.</p>
This text font color is #A994DC.
.myBgColor { background-color: #A994DC; }
<div style="background-color:#A994DC">Inner text</div>
This div background color is #A994DC.
.myBorderColor { border: 1px solid #A994DC; }
<div style="border:3px solid #A994DC">Div</div>
This div border color is #A994DC.
.myOpacity80 { color: #A994DC; opacity: 0.8; }
<p style="color:#A994DC;opacity:0.8;">80%</p>
Text with #A994DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A994DC;}
<p style="text-shadow: 3px 3px 1px #A994DC">Text here.</p>
This text has shadow with #A994DC color.
.textShadow {text-shadow: 3px 3px 1px #A994DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A994DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A994DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A994DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A994DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A994DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A994DC; -webkit-box-shadow: 1px 1px 3px 2px #A994DC; box-shadow: 1px 1px 3px 2px #A994DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A994DC; -webkit-box-shadow: 1px 1px 3px 2px #A994DC; box-shadow:1px 1px 3px 2px #A994DC;">
Div content here</div>
This text has color #A994DC on black background.
This text has color #A994DC on white background.
This text has black color on #A994DC background.
This text has white color on #A994DC background.