HEX: #CCFFCC
RGB: (204,255,204)
#CCFFCC contains red, green and blue colors in about the same proportion. #CCFFCC color is web safe color. It maybe written shortly as #CFC.
#CCFFCC color RGB value is (204,255,204).
RGB: (204,255,204) (80%,100%,80%)
R 204 of 255 = 80%
G 255 of 255 = 100%
B 204 of 255 = 80%
R + G + B ~ 87%. #CCFFCC is light color.
R + G + B =
204 + 255 + 204 = 663 (100%)
R 204 of 663 ~ 30.77%
G 255 of 663 ~ 38.46%
B 204 of 663 ~ 30.77%
#CCFFCC color CMYK value is (20,0,20,0).
CMYK: (20,0,20,0) C20M0Y20K0 (20%,0%,20%,0%) (0.20/0.00/0.20/0.00)
CC | FF | CC | |
---|---|---|---|
RGB | 204 | 255 | 204 |
HSL | 120° | 100.00% | 90.00% |
HSB/HSV | 120° | 20.00% | 100.00% |
CMYK | 20.00% | 0.00% | 20.00% |
0.00% |
HEX | CC | FF | CC |
Decimal | 204 | 255 | 204 |
Binary | 11001100 | 11111111 | 11001100 |
Octal | 314 | 377 | 314 |
Examples of css and html codes for elements with #CCFFCC color. Also use rgb(204,255,204) instead hex code.
.myTextColor { color: #CCFFCC; }
<p style="color:#CCFFCC">This sample text font color is #CCFFCC.</p>
This text font color is #CCFFCC.
.myBgColor { background-color: #CCFFCC; }
<div style="background-color:#CCFFCC">Inner text</div>
This div background color is #CCFFCC.
.myBorderColor { border: 1px solid #CCFFCC; }
<div style="border:3px solid #CCFFCC">Div</div>
This div border color is #CCFFCC.
.myOpacity80 { color: #CCFFCC; opacity: 0.8; }
<p style="color:#CCFFCC;opacity:0.8;">80%</p>
Text with #CCFFCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCFFCC;}
<p style="text-shadow: 3px 3px 1px #CCFFCC">Text here.</p>
This text has shadow with #CCFFCC color.
.textShadow {text-shadow: 3px 3px 1px #CCFFCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCFFCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCFFCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCFFCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCFFCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCFFCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCFFCC; -webkit-box-shadow: 1px 1px 3px 2px #CCFFCC; box-shadow: 1px 1px 3px 2px #CCFFCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCFFCC; -webkit-box-shadow: 1px 1px 3px 2px #CCFFCC; box-shadow:1px 1px 3px 2px #CCFFCC;">
Div content here</div>
This text has color #CCFFCC on black background.
This text has color #CCFFCC on white background.
This text has black color on #CCFFCC background.
This text has white color on #CCFFCC background.