HEX: #CEC6DD
RGB: (206,198,221)
#CEC6DD contains red, green and blue colors in about the same proportion. Web safe color of #CEC6DD is #CCCCCC (or #CCC).
#CEC6DD color RGB value is (206,198,221).
RGB: (206,198,221) (81%,78%,87%)
R 206 of 255 = 81%
G 198 of 255 = 78%
B 221 of 255 = 87%
R + G + B ~ 82%. #CEC6DD is quite light color.
R + G + B =
206 + 198 + 221 = 625 (100%)
R 206 of 625 ~ 32.96%
G 198 of 625 ~ 31.68%
B 221 of 625 ~ 35.36%
#CEC6DD color CMYK value is (7,10,0,13).
CMYK: (7,10,0,13) C7M10Y0K13 (7%,10%,0%,13%) (0.07/0.10/0.00/0.13)
CE | C6 | DD | |
---|---|---|---|
RGB | 206 | 198 | 221 |
HSL | 261° | 25.27% | 82.16% |
HSB/HSV | 261° | 10.41% | 86.67% |
CMYK | 6.79% | 10.41% | 0.00% |
13.33% |
HEX | CE | C6 | DD |
Decimal | 206 | 198 | 221 |
Binary | 11001110 | 11000110 | 11011101 |
Octal | 316 | 306 | 335 |
Examples of css and html codes for elements with #CEC6DD color. Also use rgb(206,198,221) instead hex code.
.myTextColor { color: #CEC6DD; }
<p style="color:#CEC6DD">This sample text font color is #CEC6DD.</p>
This text font color is #CEC6DD.
.myBgColor { background-color: #CEC6DD; }
<div style="background-color:#CEC6DD">Inner text</div>
This div background color is #CEC6DD.
.myBorderColor { border: 1px solid #CEC6DD; }
<div style="border:3px solid #CEC6DD">Div</div>
This div border color is #CEC6DD.
.myOpacity80 { color: #CEC6DD; opacity: 0.8; }
<p style="color:#CEC6DD;opacity:0.8;">80%</p>
Text with #CEC6DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CEC6DD;}
<p style="text-shadow: 3px 3px 1px #CEC6DD">Text here.</p>
This text has shadow with #CEC6DD color.
.textShadow {text-shadow: 3px 3px 1px #CEC6DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CEC6DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #CEC6DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CEC6DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CEC6DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #CEC6DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CEC6DD; -webkit-box-shadow: 1px 1px 3px 2px #CEC6DD; box-shadow: 1px 1px 3px 2px #CEC6DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CEC6DD; -webkit-box-shadow: 1px 1px 3px 2px #CEC6DD; box-shadow:1px 1px 3px 2px #CEC6DD;">
Div content here</div>
This text has color #CEC6DD on black background.
This text has color #CEC6DD on white background.
This text has black color on #CEC6DD background.
This text has white color on #CEC6DD background.