HEX: #CEF2DB
RGB: (206,242,219)
#CEF2DB contains red, green and blue colors in about the same proportion. Web safe color of #CEF2DB is #CCFFCC (or #CFC).
#CEF2DB color RGB value is (206,242,219).
RGB: (206,242,219) (81%,95%,86%)
R 206 of 255 = 81%
G 242 of 255 = 95%
B 219 of 255 = 86%
R + G + B ~ 87%. #CEF2DB is light color.
R + G + B =
206 + 242 + 219 = 667 (100%)
R 206 of 667 ~ 30.88%
G 242 of 667 ~ 36.28%
B 219 of 667 ~ 32.83%
#CEF2DB color CMYK value is (15,0,10,5).
CMYK: (15,0,10,5) C15M0Y10K5 (15%,0%,10%,5%) (0.15/0.00/0.10/0.05)
CE | F2 | DB | |
---|---|---|---|
RGB | 206 | 242 | 219 |
HSL | 142° | 58.06% | 87.84% |
HSB/HSV | 142° | 14.88% | 94.90% |
CMYK | 14.88% | 0.00% | 9.50% |
5.10% |
HEX | CE | F2 | DB |
Decimal | 206 | 242 | 219 |
Binary | 11001110 | 11110010 | 11011011 |
Octal | 316 | 362 | 333 |
Examples of css and html codes for elements with #CEF2DB color. Also use rgb(206,242,219) instead hex code.
.myTextColor { color: #CEF2DB; }
<p style="color:#CEF2DB">This sample text font color is #CEF2DB.</p>
This text font color is #CEF2DB.
.myBgColor { background-color: #CEF2DB; }
<div style="background-color:#CEF2DB">Inner text</div>
This div background color is #CEF2DB.
.myBorderColor { border: 1px solid #CEF2DB; }
<div style="border:3px solid #CEF2DB">Div</div>
This div border color is #CEF2DB.
.myOpacity80 { color: #CEF2DB; opacity: 0.8; }
<p style="color:#CEF2DB;opacity:0.8;">80%</p>
Text with #CEF2DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CEF2DB;}
<p style="text-shadow: 3px 3px 1px #CEF2DB">Text here.</p>
This text has shadow with #CEF2DB color.
.textShadow {text-shadow: 3px 3px 1px #CEF2DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CEF2DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #CEF2DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CEF2DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CEF2DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #CEF2DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CEF2DB; -webkit-box-shadow: 1px 1px 3px 2px #CEF2DB; box-shadow: 1px 1px 3px 2px #CEF2DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CEF2DB; -webkit-box-shadow: 1px 1px 3px 2px #CEF2DB; box-shadow:1px 1px 3px 2px #CEF2DB;">
Div content here</div>
This text has color #CEF2DB on black background.
This text has color #CEF2DB on white background.
This text has black color on #CEF2DB background.
This text has white color on #CEF2DB background.