HEX: #CCEEBE
RGB: (204,238,190)
#CCEEBE contains red, green and blue colors in about the same proportion. Web safe color of #CCEEBE is #CCFFCC (or #CFC).
#CCEEBE color RGB value is (204,238,190).
RGB: (204,238,190) (80%,93%,75%)
R 204 of 255 = 80%
G 238 of 255 = 93%
B 190 of 255 = 75%
R + G + B ~ 83%. #CCEEBE is quite light color.
R + G + B =
204 + 238 + 190 = 632 (100%)
R 204 of 632 ~ 32.28%
G 238 of 632 ~ 37.66%
B 190 of 632 ~ 30.06%
#CCEEBE color CMYK value is (14,0,20,7).
CMYK: (14,0,20,7) C14M0Y20K7 (14%,0%,20%,7%) (0.14/0.00/0.20/0.07)
CC | EE | BE | |
---|---|---|---|
RGB | 204 | 238 | 190 |
HSL | 103° | 58.54% | 83.92% |
HSB/HSV | 103° | 20.17% | 93.33% |
CMYK | 14.29% | 0.00% | 20.17% |
6.67% |
HEX | CC | EE | BE |
Decimal | 204 | 238 | 190 |
Binary | 11001100 | 11101110 | 10111110 |
Octal | 314 | 356 | 276 |
Examples of css and html codes for elements with #CCEEBE color. Also use rgb(204,238,190) instead hex code.
.myTextColor { color: #CCEEBE; }
<p style="color:#CCEEBE">This sample text font color is #CCEEBE.</p>
This text font color is #CCEEBE.
.myBgColor { background-color: #CCEEBE; }
<div style="background-color:#CCEEBE">Inner text</div>
This div background color is #CCEEBE.
.myBorderColor { border: 1px solid #CCEEBE; }
<div style="border:3px solid #CCEEBE">Div</div>
This div border color is #CCEEBE.
.myOpacity80 { color: #CCEEBE; opacity: 0.8; }
<p style="color:#CCEEBE;opacity:0.8;">80%</p>
Text with #CCEEBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCEEBE;}
<p style="text-shadow: 3px 3px 1px #CCEEBE">Text here.</p>
This text has shadow with #CCEEBE color.
.textShadow {text-shadow: 3px 3px 1px #CCEEBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCEEBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCEEBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCEEBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCEEBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCEEBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCEEBE; -webkit-box-shadow: 1px 1px 3px 2px #CCEEBE; box-shadow: 1px 1px 3px 2px #CCEEBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCEEBE; -webkit-box-shadow: 1px 1px 3px 2px #CCEEBE; box-shadow:1px 1px 3px 2px #CCEEBE;">
Div content here</div>
This text has color #CCEEBE on black background.
This text has color #CCEEBE on white background.
This text has black color on #CCEEBE background.
This text has white color on #CCEEBE background.