HEX: #D6AAEE
RGB: (214,170,238)
#D6AAEE contains mainly red and blue colors. Web safe color of #D6AAEE is #CC99FF (or #C9F).
#D6AAEE color RGB value is (214,170,238).
RGB: (214,170,238) (84%,67%,93%)
R 214 of 255 = 84%
G 170 of 255 = 67%
B 238 of 255 = 93%
R + G + B ~ 81%. #D6AAEE is quite light color.
R + G + B =
214 + 170 + 238 = 622 (100%)
R 214 of 622 ~ 34.41%
G 170 of 622 ~ 27.33%
B 238 of 622 ~ 38.26%
#D6AAEE color CMYK value is (10,29,0,7).
CMYK: (10,29,0,7) C10M29Y0K7 (10%,29%,0%,7%) (0.10/0.29/0.00/0.07)
D6 | AA | EE | |
---|---|---|---|
RGB | 214 | 170 | 238 |
HSL | 279° | 66.67% | 80.00% |
HSB/HSV | 279° | 28.57% | 93.33% |
CMYK | 10.08% | 28.57% | 0.00% |
6.67% |
HEX | D6 | AA | EE |
Decimal | 214 | 170 | 238 |
Binary | 11010110 | 10101010 | 11101110 |
Octal | 326 | 252 | 356 |
Examples of css and html codes for elements with #D6AAEE color. Also use rgb(214,170,238) instead hex code.
.myTextColor { color: #D6AAEE; }
<p style="color:#D6AAEE">This sample text font color is #D6AAEE.</p>
This text font color is #D6AAEE.
.myBgColor { background-color: #D6AAEE; }
<div style="background-color:#D6AAEE">Inner text</div>
This div background color is #D6AAEE.
.myBorderColor { border: 1px solid #D6AAEE; }
<div style="border:3px solid #D6AAEE">Div</div>
This div border color is #D6AAEE.
.myOpacity80 { color: #D6AAEE; opacity: 0.8; }
<p style="color:#D6AAEE;opacity:0.8;">80%</p>
Text with #D6AAEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6AAEE;}
<p style="text-shadow: 3px 3px 1px #D6AAEE">Text here.</p>
This text has shadow with #D6AAEE color.
.textShadow {text-shadow: 3px 3px 1px #D6AAEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6AAEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6AAEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6AAEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6AAEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6AAEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6AAEE; -webkit-box-shadow: 1px 1px 3px 2px #D6AAEE; box-shadow: 1px 1px 3px 2px #D6AAEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6AAEE; -webkit-box-shadow: 1px 1px 3px 2px #D6AAEE; box-shadow:1px 1px 3px 2px #D6AAEE;">
Div content here</div>
This text has color #D6AAEE on black background.
This text has color #D6AAEE on white background.
This text has black color on #D6AAEE background.
This text has white color on #D6AAEE background.