HEX: #D6A3FD
RGB: (214,163,253)
#D6A3FD contains mainly red and blue colors. Web safe color of #D6A3FD is #CC99FF (or #C9F).
#D6A3FD color RGB value is (214,163,253).
RGB: (214,163,253) (84%,64%,99%)
R 214 of 255 = 84%
G 163 of 255 = 64%
B 253 of 255 = 99%
R + G + B ~ 82%. #D6A3FD is quite light color.
R + G + B =
214 + 163 + 253 = 630 (100%)
R 214 of 630 ~ 33.97%
G 163 of 630 ~ 25.87%
B 253 of 630 ~ 40.16%
#D6A3FD color CMYK value is (15,36,0,1).
CMYK: (15,36,0,1) C15M36Y0K1 (15%,36%,0%,1%) (0.15/0.36/0.00/0.01)
D6 | A3 | FD | |
---|---|---|---|
RGB | 214 | 163 | 253 |
HSL | 274° | 95.74% | 81.57% |
HSB/HSV | 274° | 35.57% | 99.22% |
CMYK | 15.42% | 35.57% | 0.00% |
0.78% |
HEX | D6 | A3 | FD |
Decimal | 214 | 163 | 253 |
Binary | 11010110 | 10100011 | 11111101 |
Octal | 326 | 243 | 375 |
Examples of css and html codes for elements with #D6A3FD color. Also use rgb(214,163,253) instead hex code.
.myTextColor { color: #D6A3FD; }
<p style="color:#D6A3FD">This sample text font color is #D6A3FD.</p>
This text font color is #D6A3FD.
.myBgColor { background-color: #D6A3FD; }
<div style="background-color:#D6A3FD">Inner text</div>
This div background color is #D6A3FD.
.myBorderColor { border: 1px solid #D6A3FD; }
<div style="border:3px solid #D6A3FD">Div</div>
This div border color is #D6A3FD.
.myOpacity80 { color: #D6A3FD; opacity: 0.8; }
<p style="color:#D6A3FD;opacity:0.8;">80%</p>
Text with #D6A3FD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6A3FD;}
<p style="text-shadow: 3px 3px 1px #D6A3FD">Text here.</p>
This text has shadow with #D6A3FD color.
.textShadow {text-shadow: 3px 3px 1px #D6A3FD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6A3FD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6A3FD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6A3FD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6A3FD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6A3FD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6A3FD; -webkit-box-shadow: 1px 1px 3px 2px #D6A3FD; box-shadow: 1px 1px 3px 2px #D6A3FD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6A3FD; -webkit-box-shadow: 1px 1px 3px 2px #D6A3FD; box-shadow:1px 1px 3px 2px #D6A3FD;">
Div content here</div>
This text has color #D6A3FD on black background.
This text has color #D6A3FD on white background.
This text has black color on #D6A3FD background.
This text has white color on #D6A3FD background.