HEX: #A49BDD
RGB: (164,155,221)
#A49BDD contains mainly red and blue colors. Web safe color of #A49BDD is #9999CC (or #99C).
#A49BDD color RGB value is (164,155,221).
RGB: (164,155,221) (64%,61%,87%)
R 164 of 255 = 64%
G 155 of 255 = 61%
B 221 of 255 = 87%
R + G + B ~ 71%. #A49BDD is quite light color.
R + G + B =
164 + 155 + 221 = 540 (100%)
R 164 of 540 ~ 30.37%
G 155 of 540 ~ 28.7%
B 221 of 540 ~ 40.93%
#A49BDD color CMYK value is (26,30,0,13).
CMYK: (26,30,0,13) C26M30Y0K13 (26%,30%,0%,13%) (0.26/0.30/0.00/0.13)
A4 | 9B | DD | |
---|---|---|---|
RGB | 164 | 155 | 221 |
HSL | 248° | 49.25% | 73.73% |
HSB/HSV | 248° | 29.86% | 86.67% |
CMYK | 25.79% | 29.86% | 0.00% |
13.33% |
HEX | A4 | 9B | DD |
Decimal | 164 | 155 | 221 |
Binary | 10100100 | 10011011 | 11011101 |
Octal | 244 | 233 | 335 |
Examples of css and html codes for elements with #A49BDD color. Also use rgb(164,155,221) instead hex code.
.myTextColor { color: #A49BDD; }
<p style="color:#A49BDD">This sample text font color is #A49BDD.</p>
This text font color is #A49BDD.
.myBgColor { background-color: #A49BDD; }
<div style="background-color:#A49BDD">Inner text</div>
This div background color is #A49BDD.
.myBorderColor { border: 1px solid #A49BDD; }
<div style="border:3px solid #A49BDD">Div</div>
This div border color is #A49BDD.
.myOpacity80 { color: #A49BDD; opacity: 0.8; }
<p style="color:#A49BDD;opacity:0.8;">80%</p>
Text with #A49BDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A49BDD;}
<p style="text-shadow: 3px 3px 1px #A49BDD">Text here.</p>
This text has shadow with #A49BDD color.
.textShadow {text-shadow: 3px 3px 1px #A49BDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A49BDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A49BDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A49BDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A49BDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A49BDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A49BDD; -webkit-box-shadow: 1px 1px 3px 2px #A49BDD; box-shadow: 1px 1px 3px 2px #A49BDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A49BDD; -webkit-box-shadow: 1px 1px 3px 2px #A49BDD; box-shadow:1px 1px 3px 2px #A49BDD;">
Div content here</div>
This text has color #A49BDD on black background.
This text has color #A49BDD on white background.
This text has black color on #A49BDD background.
This text has white color on #A49BDD background.