HEX: #CCDDCC
RGB: (204,221,204)
#CCDDCC contains red, green and blue colors in about the same proportion. Web safe color of #CCDDCC is #CCCCCC (or #CCC).
#CCDDCC color RGB value is (204,221,204).
RGB: (204,221,204) (80%,87%,80%)
R 204 of 255 = 80%
G 221 of 255 = 87%
B 204 of 255 = 80%
R + G + B ~ 82%. #CCDDCC is quite light color.
R + G + B =
204 + 221 + 204 = 629 (100%)
R 204 of 629 ~ 32.43%
G 221 of 629 ~ 35.14%
B 204 of 629 ~ 32.43%
#CCDDCC color CMYK value is (8,0,8,13).
CMYK: (8,0,8,13) C8M0Y8K13 (8%,0%,8%,13%) (0.08/0.00/0.08/0.13)
CC | DD | CC | |
---|---|---|---|
RGB | 204 | 221 | 204 |
HSL | 120° | 20.00% | 83.33% |
HSB/HSV | 120° | 7.69% | 86.67% |
CMYK | 7.69% | 0.00% | 7.69% |
13.33% |
HEX | CC | DD | CC |
Decimal | 204 | 221 | 204 |
Binary | 11001100 | 11011101 | 11001100 |
Octal | 314 | 335 | 314 |
Examples of css and html codes for elements with #CCDDCC color. Also use rgb(204,221,204) instead hex code.
.myTextColor { color: #CCDDCC; }
<p style="color:#CCDDCC">This sample text font color is #CCDDCC.</p>
This text font color is #CCDDCC.
.myBgColor { background-color: #CCDDCC; }
<div style="background-color:#CCDDCC">Inner text</div>
This div background color is #CCDDCC.
.myBorderColor { border: 1px solid #CCDDCC; }
<div style="border:3px solid #CCDDCC">Div</div>
This div border color is #CCDDCC.
.myOpacity80 { color: #CCDDCC; opacity: 0.8; }
<p style="color:#CCDDCC;opacity:0.8;">80%</p>
Text with #CCDDCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCDDCC;}
<p style="text-shadow: 3px 3px 1px #CCDDCC">Text here.</p>
This text has shadow with #CCDDCC color.
.textShadow {text-shadow: 3px 3px 1px #CCDDCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCDDCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCDDCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCDDCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCDDCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCDDCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCDDCC; -webkit-box-shadow: 1px 1px 3px 2px #CCDDCC; box-shadow: 1px 1px 3px 2px #CCDDCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCDDCC; -webkit-box-shadow: 1px 1px 3px 2px #CCDDCC; box-shadow:1px 1px 3px 2px #CCDDCC;">
Div content here</div>
This text has color #CCDDCC on black background.
This text has color #CCDDCC on white background.
This text has black color on #CCDDCC background.
This text has white color on #CCDDCC background.