HEX: #A999CD
RGB: (169,153,205)
#A999CD contains red, green and blue colors in about the same proportion. Web safe color of #A999CD is #9999CC (or #99C).
#A999CD color RGB value is (169,153,205).
RGB: (169,153,205) (66%,60%,80%)
R 169 of 255 = 66%
G 153 of 255 = 60%
B 205 of 255 = 80%
R + G + B ~ 69%. #A999CD is quite light color.
R + G + B =
169 + 153 + 205 = 527 (100%)
R 169 of 527 ~ 32.07%
G 153 of 527 ~ 29.03%
B 205 of 527 ~ 38.9%
#A999CD color CMYK value is (18,25,0,20).
CMYK: (18,25,0,20) C18M25Y0K20 (18%,25%,0%,20%) (0.18/0.25/0.00/0.20)
A9 | 99 | CD | |
---|---|---|---|
RGB | 169 | 153 | 205 |
HSL | 258° | 34.21% | 70.20% |
HSB/HSV | 258° | 25.37% | 80.39% |
CMYK | 17.56% | 25.37% | 0.00% |
19.61% |
HEX | A9 | 99 | CD |
Decimal | 169 | 153 | 205 |
Binary | 10101001 | 10011001 | 11001101 |
Octal | 251 | 231 | 315 |
Examples of css and html codes for elements with #A999CD color. Also use rgb(169,153,205) instead hex code.
.myTextColor { color: #A999CD; }
<p style="color:#A999CD">This sample text font color is #A999CD.</p>
This text font color is #A999CD.
.myBgColor { background-color: #A999CD; }
<div style="background-color:#A999CD">Inner text</div>
This div background color is #A999CD.
.myBorderColor { border: 1px solid #A999CD; }
<div style="border:3px solid #A999CD">Div</div>
This div border color is #A999CD.
.myOpacity80 { color: #A999CD; opacity: 0.8; }
<p style="color:#A999CD;opacity:0.8;">80%</p>
Text with #A999CD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A999CD;}
<p style="text-shadow: 3px 3px 1px #A999CD">Text here.</p>
This text has shadow with #A999CD color.
.textShadow {text-shadow: 3px 3px 1px #A999CD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A999CD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A999CD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A999CD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A999CD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A999CD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A999CD; -webkit-box-shadow: 1px 1px 3px 2px #A999CD; box-shadow: 1px 1px 3px 2px #A999CD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A999CD; -webkit-box-shadow: 1px 1px 3px 2px #A999CD; box-shadow:1px 1px 3px 2px #A999CD;">
Div content here</div>
This text has color #A999CD on black background.
This text has color #A999CD on white background.
This text has black color on #A999CD background.
This text has white color on #A999CD background.