HEX: #CEC5ED
RGB: (206,197,237)
#CEC5ED contains red, green and blue colors in about the same proportion. Web safe color of #CEC5ED is #CCCCFF (or #CCF).
#CEC5ED color RGB value is (206,197,237).
RGB: (206,197,237) (81%,77%,93%)
R 206 of 255 = 81%
G 197 of 255 = 77%
B 237 of 255 = 93%
R + G + B ~ 84%. #CEC5ED is quite light color.
R + G + B =
206 + 197 + 237 = 640 (100%)
R 206 of 640 ~ 32.19%
G 197 of 640 ~ 30.78%
B 237 of 640 ~ 37.03%
#CEC5ED color CMYK value is (13,17,0,7).
CMYK: (13,17,0,7) C13M17Y0K7 (13%,17%,0%,7%) (0.13/0.17/0.00/0.07)
CE | C5 | ED | |
---|---|---|---|
RGB | 206 | 197 | 237 |
HSL | 254° | 52.63% | 85.10% |
HSB/HSV | 254° | 16.88% | 92.94% |
CMYK | 13.08% | 16.88% | 0.00% |
7.06% |
HEX | CE | C5 | ED |
Decimal | 206 | 197 | 237 |
Binary | 11001110 | 11000101 | 11101101 |
Octal | 316 | 305 | 355 |
Examples of css and html codes for elements with #CEC5ED color. Also use rgb(206,197,237) instead hex code.
.myTextColor { color: #CEC5ED; }
<p style="color:#CEC5ED">This sample text font color is #CEC5ED.</p>
This text font color is #CEC5ED.
.myBgColor { background-color: #CEC5ED; }
<div style="background-color:#CEC5ED">Inner text</div>
This div background color is #CEC5ED.
.myBorderColor { border: 1px solid #CEC5ED; }
<div style="border:3px solid #CEC5ED">Div</div>
This div border color is #CEC5ED.
.myOpacity80 { color: #CEC5ED; opacity: 0.8; }
<p style="color:#CEC5ED;opacity:0.8;">80%</p>
Text with #CEC5ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CEC5ED;}
<p style="text-shadow: 3px 3px 1px #CEC5ED">Text here.</p>
This text has shadow with #CEC5ED color.
.textShadow {text-shadow: 3px 3px 1px #CEC5ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CEC5ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #CEC5ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CEC5ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CEC5ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #CEC5ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CEC5ED; -webkit-box-shadow: 1px 1px 3px 2px #CEC5ED; box-shadow: 1px 1px 3px 2px #CEC5ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CEC5ED; -webkit-box-shadow: 1px 1px 3px 2px #CEC5ED; box-shadow:1px 1px 3px 2px #CEC5ED;">
Div content here</div>
This text has color #CEC5ED on black background.
This text has color #CEC5ED on white background.
This text has black color on #CEC5ED background.
This text has white color on #CEC5ED background.