HEX: #A49DBB
RGB: (164,157,187)
#A49DBB contains red, green and blue colors in about the same proportion. Web safe color of #A49DBB is #9999CC (or #99C).
#A49DBB color RGB value is (164,157,187).
RGB: (164,157,187) (64%,62%,73%)
R 164 of 255 = 64%
G 157 of 255 = 62%
B 187 of 255 = 73%
R + G + B ~ 66%. #A49DBB is quite light color.
R + G + B =
164 + 157 + 187 = 508 (100%)
R 164 of 508 ~ 32.28%
G 157 of 508 ~ 30.91%
B 187 of 508 ~ 36.81%
#A49DBB color CMYK value is (12,16,0,27).
CMYK: (12,16,0,27) C12M16Y0K27 (12%,16%,0%,27%) (0.12/0.16/0.00/0.27)
A4 | 9D | BB | |
---|---|---|---|
RGB | 164 | 157 | 187 |
HSL | 254° | 18.07% | 67.45% |
HSB/HSV | 254° | 16.04% | 73.33% |
CMYK | 12.30% | 16.04% | 0.00% |
26.67% |
HEX | A4 | 9D | BB |
Decimal | 164 | 157 | 187 |
Binary | 10100100 | 10011101 | 10111011 |
Octal | 244 | 235 | 273 |
Examples of css and html codes for elements with #A49DBB color. Also use rgb(164,157,187) instead hex code.
.myTextColor { color: #A49DBB; }
<p style="color:#A49DBB">This sample text font color is #A49DBB.</p>
This text font color is #A49DBB.
.myBgColor { background-color: #A49DBB; }
<div style="background-color:#A49DBB">Inner text</div>
This div background color is #A49DBB.
.myBorderColor { border: 1px solid #A49DBB; }
<div style="border:3px solid #A49DBB">Div</div>
This div border color is #A49DBB.
.myOpacity80 { color: #A49DBB; opacity: 0.8; }
<p style="color:#A49DBB;opacity:0.8;">80%</p>
Text with #A49DBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A49DBB;}
<p style="text-shadow: 3px 3px 1px #A49DBB">Text here.</p>
This text has shadow with #A49DBB color.
.textShadow {text-shadow: 3px 3px 1px #A49DBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A49DBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A49DBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A49DBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A49DBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A49DBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A49DBB; -webkit-box-shadow: 1px 1px 3px 2px #A49DBB; box-shadow: 1px 1px 3px 2px #A49DBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A49DBB; -webkit-box-shadow: 1px 1px 3px 2px #A49DBB; box-shadow:1px 1px 3px 2px #A49DBB;">
Div content here</div>
This text has color #A49DBB on black background.
This text has color #A49DBB on white background.
This text has black color on #A49DBB background.
This text has white color on #A49DBB background.