HEX: #A49EDA
RGB: (164,158,218)
#A49EDA contains mainly red and blue colors. Web safe color of #A49EDA is #9999CC (or #99C).
#A49EDA color RGB value is (164,158,218).
RGB: (164,158,218) (64%,62%,85%)
R 164 of 255 = 64%
G 158 of 255 = 62%
B 218 of 255 = 85%
R + G + B ~ 70%. #A49EDA is quite light color.
R + G + B =
164 + 158 + 218 = 540 (100%)
R 164 of 540 ~ 30.37%
G 158 of 540 ~ 29.26%
B 218 of 540 ~ 40.37%
#A49EDA color CMYK value is (25,28,0,15).
CMYK: (25,28,0,15) C25M28Y0K15 (25%,28%,0%,15%) (0.25/0.28/0.00/0.15)
A4 | 9E | DA | |
---|---|---|---|
RGB | 164 | 158 | 218 |
HSL | 246° | 44.78% | 73.73% |
HSB/HSV | 246° | 27.52% | 85.49% |
CMYK | 24.77% | 27.52% | 0.00% |
14.51% |
HEX | A4 | 9E | DA |
Decimal | 164 | 158 | 218 |
Binary | 10100100 | 10011110 | 11011010 |
Octal | 244 | 236 | 332 |
Examples of css and html codes for elements with #A49EDA color. Also use rgb(164,158,218) instead hex code.
.myTextColor { color: #A49EDA; }
<p style="color:#A49EDA">This sample text font color is #A49EDA.</p>
This text font color is #A49EDA.
.myBgColor { background-color: #A49EDA; }
<div style="background-color:#A49EDA">Inner text</div>
This div background color is #A49EDA.
.myBorderColor { border: 1px solid #A49EDA; }
<div style="border:3px solid #A49EDA">Div</div>
This div border color is #A49EDA.
.myOpacity80 { color: #A49EDA; opacity: 0.8; }
<p style="color:#A49EDA;opacity:0.8;">80%</p>
Text with #A49EDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A49EDA;}
<p style="text-shadow: 3px 3px 1px #A49EDA">Text here.</p>
This text has shadow with #A49EDA color.
.textShadow {text-shadow: 3px 3px 1px #A49EDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A49EDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A49EDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A49EDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A49EDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A49EDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A49EDA; -webkit-box-shadow: 1px 1px 3px 2px #A49EDA; box-shadow: 1px 1px 3px 2px #A49EDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A49EDA; -webkit-box-shadow: 1px 1px 3px 2px #A49EDA; box-shadow:1px 1px 3px 2px #A49EDA;">
Div content here</div>
This text has color #A49EDA on black background.
This text has color #A49EDA on white background.
This text has black color on #A49EDA background.
This text has white color on #A49EDA background.