HEX: #D7CADC
RGB: (215,202,220)
#D7CADC contains red, green and blue colors in about the same proportion. Web safe color of #D7CADC is #CCCCCC (or #CCC).
#D7CADC color RGB value is (215,202,220).
RGB: (215,202,220) (84%,79%,86%)
R 215 of 255 = 84%
G 202 of 255 = 79%
B 220 of 255 = 86%
R + G + B ~ 83%. #D7CADC is quite light color.
R + G + B =
215 + 202 + 220 = 637 (100%)
R 215 of 637 ~ 33.75%
G 202 of 637 ~ 31.71%
B 220 of 637 ~ 34.54%
#D7CADC color CMYK value is (2,8,0,14).
CMYK: (2,8,0,14) C2M8Y0K14 (2%,8%,0%,14%) (0.02/0.08/0.00/0.14)
D7 | CA | DC | |
---|---|---|---|
RGB | 215 | 202 | 220 |
HSL | 283° | 20.45% | 82.75% |
HSB/HSV | 283° | 8.18% | 86.27% |
CMYK | 2.27% | 8.18% | 0.00% |
13.73% |
HEX | D7 | CA | DC |
Decimal | 215 | 202 | 220 |
Binary | 11010111 | 11001010 | 11011100 |
Octal | 327 | 312 | 334 |
Examples of css and html codes for elements with #D7CADC color. Also use rgb(215,202,220) instead hex code.
.myTextColor { color: #D7CADC; }
<p style="color:#D7CADC">This sample text font color is #D7CADC.</p>
This text font color is #D7CADC.
.myBgColor { background-color: #D7CADC; }
<div style="background-color:#D7CADC">Inner text</div>
This div background color is #D7CADC.
.myBorderColor { border: 1px solid #D7CADC; }
<div style="border:3px solid #D7CADC">Div</div>
This div border color is #D7CADC.
.myOpacity80 { color: #D7CADC; opacity: 0.8; }
<p style="color:#D7CADC;opacity:0.8;">80%</p>
Text with #D7CADC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D7CADC;}
<p style="text-shadow: 3px 3px 1px #D7CADC">Text here.</p>
This text has shadow with #D7CADC color.
.textShadow {text-shadow: 3px 3px 1px #D7CADC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D7CADC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D7CADC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D7CADC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D7CADC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D7CADC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D7CADC; -webkit-box-shadow: 1px 1px 3px 2px #D7CADC; box-shadow: 1px 1px 3px 2px #D7CADC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D7CADC; -webkit-box-shadow: 1px 1px 3px 2px #D7CADC; box-shadow:1px 1px 3px 2px #D7CADC;">
Div content here</div>
This text has color #D7CADC on black background.
This text has color #D7CADC on white background.
This text has black color on #D7CADC background.
This text has white color on #D7CADC background.