HEX: #D76ADF
RGB: (215,106,223)
#D76ADF contains mainly red and blue colors. Web safe color of #D76ADF is #CC66CC (or #C6C).
#D76ADF color RGB value is (215,106,223).
RGB: (215,106,223) (84%,42%,87%)
R 215 of 255 = 84%
G 106 of 255 = 42%
B 223 of 255 = 87%
R + G + B ~ 71%. #D76ADF is quite light color.
R + G + B =
215 + 106 + 223 = 544 (100%)
R 215 of 544 ~ 39.52%
G 106 of 544 ~ 19.49%
B 223 of 544 ~ 40.99%
#D76ADF color CMYK value is (4,52,0,13).
CMYK: (4,52,0,13) C4M52Y0K13 (4%,52%,0%,13%) (0.04/0.52/0.00/0.13)
D7 | 6A | DF | |
---|---|---|---|
RGB | 215 | 106 | 223 |
HSL | 296° | 64.64% | 64.51% |
HSB/HSV | 296° | 52.47% | 87.45% |
CMYK | 3.59% | 52.47% | 0.00% |
12.55% |
HEX | D7 | 6A | DF |
Decimal | 215 | 106 | 223 |
Binary | 11010111 | 1101010 | 11011111 |
Octal | 327 | 152 | 337 |
Examples of css and html codes for elements with #D76ADF color. Also use rgb(215,106,223) instead hex code.
.myTextColor { color: #D76ADF; }
<p style="color:#D76ADF">This sample text font color is #D76ADF.</p>
This text font color is #D76ADF.
.myBgColor { background-color: #D76ADF; }
<div style="background-color:#D76ADF">Inner text</div>
This div background color is #D76ADF.
.myBorderColor { border: 1px solid #D76ADF; }
<div style="border:3px solid #D76ADF">Div</div>
This div border color is #D76ADF.
.myOpacity80 { color: #D76ADF; opacity: 0.8; }
<p style="color:#D76ADF;opacity:0.8;">80%</p>
Text with #D76ADF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D76ADF;}
<p style="text-shadow: 3px 3px 1px #D76ADF">Text here.</p>
This text has shadow with #D76ADF color.
.textShadow {text-shadow: 3px 3px 1px #D76ADF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D76ADF, 5px 5px 20px red">Text here.</p>
This text has shadow with #D76ADF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D76ADF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D76ADF, Direction=45, Strength=4)">Text</p>
This text has shadow with #D76ADF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D76ADF; -webkit-box-shadow: 1px 1px 3px 2px #D76ADF; box-shadow: 1px 1px 3px 2px #D76ADF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D76ADF; -webkit-box-shadow: 1px 1px 3px 2px #D76ADF; box-shadow:1px 1px 3px 2px #D76ADF;">
Div content here</div>
This text has color #D76ADF on black background.
This text has color #D76ADF on white background.
This text has black color on #D76ADF background.
This text has white color on #D76ADF background.