HEX: #A899BB
RGB: (168,153,187)
#A899BB contains red, green and blue colors in about the same proportion. Web safe color of #A899BB is #9999CC (or #99C).
#A899BB color RGB value is (168,153,187).
RGB: (168,153,187) (66%,60%,73%)
R 168 of 255 = 66%
G 153 of 255 = 60%
B 187 of 255 = 73%
R + G + B ~ 66%. #A899BB is quite light color.
R + G + B =
168 + 153 + 187 = 508 (100%)
R 168 of 508 ~ 33.07%
G 153 of 508 ~ 30.12%
B 187 of 508 ~ 36.81%
#A899BB color CMYK value is (10,18,0,27).
CMYK: (10,18,0,27) C10M18Y0K27 (10%,18%,0%,27%) (0.10/0.18/0.00/0.27)
A8 | 99 | BB | |
---|---|---|---|
RGB | 168 | 153 | 187 |
HSL | 266° | 20.00% | 66.67% |
HSB/HSV | 266° | 18.18% | 73.33% |
CMYK | 10.16% | 18.18% | 0.00% |
26.67% |
HEX | A8 | 99 | BB |
Decimal | 168 | 153 | 187 |
Binary | 10101000 | 10011001 | 10111011 |
Octal | 250 | 231 | 273 |
Examples of css and html codes for elements with #A899BB color. Also use rgb(168,153,187) instead hex code.
.myTextColor { color: #A899BB; }
<p style="color:#A899BB">This sample text font color is #A899BB.</p>
This text font color is #A899BB.
.myBgColor { background-color: #A899BB; }
<div style="background-color:#A899BB">Inner text</div>
This div background color is #A899BB.
.myBorderColor { border: 1px solid #A899BB; }
<div style="border:3px solid #A899BB">Div</div>
This div border color is #A899BB.
.myOpacity80 { color: #A899BB; opacity: 0.8; }
<p style="color:#A899BB;opacity:0.8;">80%</p>
Text with #A899BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A899BB;}
<p style="text-shadow: 3px 3px 1px #A899BB">Text here.</p>
This text has shadow with #A899BB color.
.textShadow {text-shadow: 3px 3px 1px #A899BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A899BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A899BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A899BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A899BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A899BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A899BB; -webkit-box-shadow: 1px 1px 3px 2px #A899BB; box-shadow: 1px 1px 3px 2px #A899BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A899BB; -webkit-box-shadow: 1px 1px 3px 2px #A899BB; box-shadow:1px 1px 3px 2px #A899BB;">
Div content here</div>
This text has color #A899BB on black background.
This text has color #A899BB on white background.
This text has black color on #A899BB background.
This text has white color on #A899BB background.