HEX: #CCEEA9
RGB: (204,238,169)
#CCEEA9 contains mainly red and green colors. Web safe color of #CCEEA9 is #CCFF99 (or #CF9).
#CCEEA9 color RGB value is (204,238,169).
RGB: (204,238,169) (80%,93%,66%)
R 204 of 255 = 80%
G 238 of 255 = 93%
B 169 of 255 = 66%
R + G + B ~ 80%. #CCEEA9 is quite light color.
R + G + B =
204 + 238 + 169 = 611 (100%)
R 204 of 611 ~ 33.39%
G 238 of 611 ~ 38.95%
B 169 of 611 ~ 27.66%
#CCEEA9 color CMYK value is (14,0,29,7).
CMYK: (14,0,29,7) C14M0Y29K7 (14%,0%,29%,7%) (0.14/0.00/0.29/0.07)
CC | EE | A9 | |
---|---|---|---|
RGB | 204 | 238 | 169 |
HSL | 90° | 66.99% | 79.80% |
HSB/HSV | 90° | 28.99% | 93.33% |
CMYK | 14.29% | 0.00% | 28.99% |
6.67% |
HEX | CC | EE | A9 |
Decimal | 204 | 238 | 169 |
Binary | 11001100 | 11101110 | 10101001 |
Octal | 314 | 356 | 251 |
Examples of css and html codes for elements with #CCEEA9 color. Also use rgb(204,238,169) instead hex code.
.myTextColor { color: #CCEEA9; }
<p style="color:#CCEEA9">This sample text font color is #CCEEA9.</p>
This text font color is #CCEEA9.
.myBgColor { background-color: #CCEEA9; }
<div style="background-color:#CCEEA9">Inner text</div>
This div background color is #CCEEA9.
.myBorderColor { border: 1px solid #CCEEA9; }
<div style="border:3px solid #CCEEA9">Div</div>
This div border color is #CCEEA9.
.myOpacity80 { color: #CCEEA9; opacity: 0.8; }
<p style="color:#CCEEA9;opacity:0.8;">80%</p>
Text with #CCEEA9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCEEA9;}
<p style="text-shadow: 3px 3px 1px #CCEEA9">Text here.</p>
This text has shadow with #CCEEA9 color.
.textShadow {text-shadow: 3px 3px 1px #CCEEA9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCEEA9, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCEEA9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCEEA9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCEEA9, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCEEA9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCEEA9; -webkit-box-shadow: 1px 1px 3px 2px #CCEEA9; box-shadow: 1px 1px 3px 2px #CCEEA9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCEEA9; -webkit-box-shadow: 1px 1px 3px 2px #CCEEA9; box-shadow:1px 1px 3px 2px #CCEEA9;">
Div content here</div>
This text has color #CCEEA9 on black background.
This text has color #CCEEA9 on white background.
This text has black color on #CCEEA9 background.
This text has white color on #CCEEA9 background.