HEX: #A49BBC
RGB: (164,155,188)
#A49BBC contains red, green and blue colors in about the same proportion. Web safe color of #A49BBC is #9999CC (or #99C).
#A49BBC color RGB value is (164,155,188).
RGB: (164,155,188) (64%,61%,74%)
R 164 of 255 = 64%
G 155 of 255 = 61%
B 188 of 255 = 74%
R + G + B ~ 66%. #A49BBC is quite light color.
R + G + B =
164 + 155 + 188 = 507 (100%)
R 164 of 507 ~ 32.35%
G 155 of 507 ~ 30.57%
B 188 of 507 ~ 37.08%
#A49BBC color CMYK value is (13,18,0,26).
CMYK: (13,18,0,26) C13M18Y0K26 (13%,18%,0%,26%) (0.13/0.18/0.00/0.26)
A4 | 9B | BC | |
---|---|---|---|
RGB | 164 | 155 | 188 |
HSL | 256° | 19.76% | 67.25% |
HSB/HSV | 256° | 17.55% | 73.73% |
CMYK | 12.77% | 17.55% | 0.00% |
26.27% |
HEX | A4 | 9B | BC |
Decimal | 164 | 155 | 188 |
Binary | 10100100 | 10011011 | 10111100 |
Octal | 244 | 233 | 274 |
Examples of css and html codes for elements with #A49BBC color. Also use rgb(164,155,188) instead hex code.
.myTextColor { color: #A49BBC; }
<p style="color:#A49BBC">This sample text font color is #A49BBC.</p>
This text font color is #A49BBC.
.myBgColor { background-color: #A49BBC; }
<div style="background-color:#A49BBC">Inner text</div>
This div background color is #A49BBC.
.myBorderColor { border: 1px solid #A49BBC; }
<div style="border:3px solid #A49BBC">Div</div>
This div border color is #A49BBC.
.myOpacity80 { color: #A49BBC; opacity: 0.8; }
<p style="color:#A49BBC;opacity:0.8;">80%</p>
Text with #A49BBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A49BBC;}
<p style="text-shadow: 3px 3px 1px #A49BBC">Text here.</p>
This text has shadow with #A49BBC color.
.textShadow {text-shadow: 3px 3px 1px #A49BBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A49BBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A49BBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A49BBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A49BBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A49BBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A49BBC; -webkit-box-shadow: 1px 1px 3px 2px #A49BBC; box-shadow: 1px 1px 3px 2px #A49BBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A49BBC; -webkit-box-shadow: 1px 1px 3px 2px #A49BBC; box-shadow:1px 1px 3px 2px #A49BBC;">
Div content here</div>
This text has color #A49BBC on black background.
This text has color #A49BBC on white background.
This text has black color on #A49BBC background.
This text has white color on #A49BBC background.