HEX: #D7CCEE
RGB: (215,204,238)
#D7CCEE contains red, green and blue colors in about the same proportion. Web safe color of #D7CCEE is #CCCCFF (or #CCF).
#D7CCEE color RGB value is (215,204,238).
RGB: (215,204,238) (84%,80%,93%)
R 215 of 255 = 84%
G 204 of 255 = 80%
B 238 of 255 = 93%
R + G + B ~ 86%. #D7CCEE is light color.
R + G + B =
215 + 204 + 238 = 657 (100%)
R 215 of 657 ~ 32.72%
G 204 of 657 ~ 31.05%
B 238 of 657 ~ 36.23%
#D7CCEE color CMYK value is (10,14,0,7).
CMYK: (10,14,0,7) C10M14Y0K7 (10%,14%,0%,7%) (0.10/0.14/0.00/0.07)
D7 | CC | EE | |
---|---|---|---|
RGB | 215 | 204 | 238 |
HSL | 259° | 50.00% | 86.67% |
HSB/HSV | 259° | 14.29% | 93.33% |
CMYK | 9.66% | 14.29% | 0.00% |
6.67% |
HEX | D7 | CC | EE |
Decimal | 215 | 204 | 238 |
Binary | 11010111 | 11001100 | 11101110 |
Octal | 327 | 314 | 356 |
Examples of css and html codes for elements with #D7CCEE color. Also use rgb(215,204,238) instead hex code.
.myTextColor { color: #D7CCEE; }
<p style="color:#D7CCEE">This sample text font color is #D7CCEE.</p>
This text font color is #D7CCEE.
.myBgColor { background-color: #D7CCEE; }
<div style="background-color:#D7CCEE">Inner text</div>
This div background color is #D7CCEE.
.myBorderColor { border: 1px solid #D7CCEE; }
<div style="border:3px solid #D7CCEE">Div</div>
This div border color is #D7CCEE.
.myOpacity80 { color: #D7CCEE; opacity: 0.8; }
<p style="color:#D7CCEE;opacity:0.8;">80%</p>
Text with #D7CCEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D7CCEE;}
<p style="text-shadow: 3px 3px 1px #D7CCEE">Text here.</p>
This text has shadow with #D7CCEE color.
.textShadow {text-shadow: 3px 3px 1px #D7CCEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D7CCEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D7CCEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D7CCEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D7CCEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D7CCEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D7CCEE; -webkit-box-shadow: 1px 1px 3px 2px #D7CCEE; box-shadow: 1px 1px 3px 2px #D7CCEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D7CCEE; -webkit-box-shadow: 1px 1px 3px 2px #D7CCEE; box-shadow:1px 1px 3px 2px #D7CCEE;">
Div content here</div>
This text has color #D7CCEE on black background.
This text has color #D7CCEE on white background.
This text has black color on #D7CCEE background.
This text has white color on #D7CCEE background.