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