HEX: #CEC2EB
RGB: (206,194,235)
#CEC2EB contains red, green and blue colors in about the same proportion. Web safe color of #CEC2EB is #CCCCFF (or #CCF).
#CEC2EB color RGB value is (206,194,235).
RGB: (206,194,235) (81%,76%,92%)
R 206 of 255 = 81%
G 194 of 255 = 76%
B 235 of 255 = 92%
R + G + B ~ 83%. #CEC2EB is quite light color.
R + G + B =
206 + 194 + 235 = 635 (100%)
R 206 of 635 ~ 32.44%
G 194 of 635 ~ 30.55%
B 235 of 635 ~ 37.01%
#CEC2EB color CMYK value is (12,17,0,8).
CMYK: (12,17,0,8) C12M17Y0K8 (12%,17%,0%,8%) (0.12/0.17/0.00/0.08)
CE | C2 | EB | |
---|---|---|---|
RGB | 206 | 194 | 235 |
HSL | 258° | 50.62% | 84.12% |
HSB/HSV | 258° | 17.45% | 92.16% |
CMYK | 12.34% | 17.45% | 0.00% |
7.84% |
HEX | CE | C2 | EB |
Decimal | 206 | 194 | 235 |
Binary | 11001110 | 11000010 | 11101011 |
Octal | 316 | 302 | 353 |
Examples of css and html codes for elements with #CEC2EB color. Also use rgb(206,194,235) instead hex code.
.myTextColor { color: #CEC2EB; }
<p style="color:#CEC2EB">This sample text font color is #CEC2EB.</p>
This text font color is #CEC2EB.
.myBgColor { background-color: #CEC2EB; }
<div style="background-color:#CEC2EB">Inner text</div>
This div background color is #CEC2EB.
.myBorderColor { border: 1px solid #CEC2EB; }
<div style="border:3px solid #CEC2EB">Div</div>
This div border color is #CEC2EB.
.myOpacity80 { color: #CEC2EB; opacity: 0.8; }
<p style="color:#CEC2EB;opacity:0.8;">80%</p>
Text with #CEC2EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CEC2EB;}
<p style="text-shadow: 3px 3px 1px #CEC2EB">Text here.</p>
This text has shadow with #CEC2EB color.
.textShadow {text-shadow: 3px 3px 1px #CEC2EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CEC2EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #CEC2EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CEC2EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CEC2EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #CEC2EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CEC2EB; -webkit-box-shadow: 1px 1px 3px 2px #CEC2EB; box-shadow: 1px 1px 3px 2px #CEC2EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CEC2EB; -webkit-box-shadow: 1px 1px 3px 2px #CEC2EB; box-shadow:1px 1px 3px 2px #CEC2EB;">
Div content here</div>
This text has color #CEC2EB on black background.
This text has color #CEC2EB on white background.
This text has black color on #CEC2EB background.
This text has white color on #CEC2EB background.