HEX: #CCF6DA
RGB: (204,246,218)
#CCF6DA contains red, green and blue colors in about the same proportion. Web safe color of #CCF6DA is #CCFFCC (or #CFC).
#CCF6DA color RGB value is (204,246,218).
RGB: (204,246,218) (80%,96%,85%)
R 204 of 255 = 80%
G 246 of 255 = 96%
B 218 of 255 = 85%
R + G + B ~ 87%. #CCF6DA is light color.
R + G + B =
204 + 246 + 218 = 668 (100%)
R 204 of 668 ~ 30.54%
G 246 of 668 ~ 36.83%
B 218 of 668 ~ 32.63%
#CCF6DA color CMYK value is (17,0,11,4).
CMYK: (17,0,11,4) C17M0Y11K4 (17%,0%,11%,4%) (0.17/0.00/0.11/0.04)
CC | F6 | DA | |
---|---|---|---|
RGB | 204 | 246 | 218 |
HSL | 140° | 70.00% | 88.24% |
HSB/HSV | 140° | 17.07% | 96.47% |
CMYK | 17.07% | 0.00% | 11.38% |
3.53% |
HEX | CC | F6 | DA |
Decimal | 204 | 246 | 218 |
Binary | 11001100 | 11110110 | 11011010 |
Octal | 314 | 366 | 332 |
Examples of css and html codes for elements with #CCF6DA color. Also use rgb(204,246,218) instead hex code.
.myTextColor { color: #CCF6DA; }
<p style="color:#CCF6DA">This sample text font color is #CCF6DA.</p>
This text font color is #CCF6DA.
.myBgColor { background-color: #CCF6DA; }
<div style="background-color:#CCF6DA">Inner text</div>
This div background color is #CCF6DA.
.myBorderColor { border: 1px solid #CCF6DA; }
<div style="border:3px solid #CCF6DA">Div</div>
This div border color is #CCF6DA.
.myOpacity80 { color: #CCF6DA; opacity: 0.8; }
<p style="color:#CCF6DA;opacity:0.8;">80%</p>
Text with #CCF6DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCF6DA;}
<p style="text-shadow: 3px 3px 1px #CCF6DA">Text here.</p>
This text has shadow with #CCF6DA color.
.textShadow {text-shadow: 3px 3px 1px #CCF6DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCF6DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCF6DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCF6DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCF6DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCF6DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCF6DA; -webkit-box-shadow: 1px 1px 3px 2px #CCF6DA; box-shadow: 1px 1px 3px 2px #CCF6DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCF6DA; -webkit-box-shadow: 1px 1px 3px 2px #CCF6DA; box-shadow:1px 1px 3px 2px #CCF6DA;">
Div content here</div>
This text has color #CCF6DA on black background.
This text has color #CCF6DA on white background.
This text has black color on #CCF6DA background.
This text has white color on #CCF6DA background.