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