HEX: #CCEEBD
RGB: (204,238,189)
#CCEEBD contains red, green and blue colors in about the same proportion. Web safe color of #CCEEBD is #CCFFCC (or #CFC).
#CCEEBD color RGB value is (204,238,189).
RGB: (204,238,189) (80%,93%,74%)
R 204 of 255 = 80%
G 238 of 255 = 93%
B 189 of 255 = 74%
R + G + B ~ 82%. #CCEEBD is quite light color.
R + G + B =
204 + 238 + 189 = 631 (100%)
R 204 of 631 ~ 32.33%
G 238 of 631 ~ 37.72%
B 189 of 631 ~ 29.95%
#CCEEBD 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 | BD | |
---|---|---|---|
RGB | 204 | 238 | 189 |
HSL | 102° | 59.04% | 83.73% |
HSB/HSV | 102° | 20.59% | 93.33% |
CMYK | 14.29% | 0.00% | 20.59% |
6.67% |
HEX | CC | EE | BD |
Decimal | 204 | 238 | 189 |
Binary | 11001100 | 11101110 | 10111101 |
Octal | 314 | 356 | 275 |
Examples of css and html codes for elements with #CCEEBD color. Also use rgb(204,238,189) instead hex code.
.myTextColor { color: #CCEEBD; }
<p style="color:#CCEEBD">This sample text font color is #CCEEBD.</p>
This text font color is #CCEEBD.
.myBgColor { background-color: #CCEEBD; }
<div style="background-color:#CCEEBD">Inner text</div>
This div background color is #CCEEBD.
.myBorderColor { border: 1px solid #CCEEBD; }
<div style="border:3px solid #CCEEBD">Div</div>
This div border color is #CCEEBD.
.myOpacity80 { color: #CCEEBD; opacity: 0.8; }
<p style="color:#CCEEBD;opacity:0.8;">80%</p>
Text with #CCEEBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCEEBD;}
<p style="text-shadow: 3px 3px 1px #CCEEBD">Text here.</p>
This text has shadow with #CCEEBD color.
.textShadow {text-shadow: 3px 3px 1px #CCEEBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCEEBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCEEBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCEEBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCEEBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCEEBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCEEBD; -webkit-box-shadow: 1px 1px 3px 2px #CCEEBD; box-shadow: 1px 1px 3px 2px #CCEEBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCEEBD; -webkit-box-shadow: 1px 1px 3px 2px #CCEEBD; box-shadow:1px 1px 3px 2px #CCEEBD;">
Div content here</div>
This text has color #CCEEBD on black background.
This text has color #CCEEBD on white background.
This text has black color on #CCEEBD background.
This text has white color on #CCEEBD background.