HEX: #00FFCC
RGB: (0,255,204)
#00FFCC contains only green and blue colors. #00FFCC color is web safe color. It maybe written shortly as #0FC.
#00FFCC color RGB value is (0,255,204).
RGB: (0,255,204)
(0%, 100%, 80%)
R 0 of 255 = 0%
G 255 of 255 = 100%
B 204 of 255 = 80%
R + G + B ~ 60%. #00FFCC is middle color (not dark and not light).
R + G + B = 0 + 255 + 204 = 459 (100%)
R 0 of 459 ~ 0%
G 255 of 459 ~ 55.56%
B 204 of 459 ~ 44.44'%
#00FFCC color CMYK value is (100,0,20,0).
CMYK: (100,0,20,0) C100M0Y20K0 (100%,0%,20%,0%) (1.00/0.00/0.20/0.00)
Color #00FFCC in popluar color models
00 | FF | CC | |
---|---|---|---|
RGB | 0 | 255 | 204 |
HSL | 168° | 100.00% | 50.00% |
HSB/HSV | 168° | 100.00% | 100.00% |
CMYK | 100.00% | 0.00% | 20.00% |
0.00% |
Color #00FFCC in popluar number systems.
HEX | 00 | FF | CC |
Decimal | 0 | 255 | 204 |
Binary | 0 | 11111111 | 11001100 |
Octal | 0 | 377 | 314 |
Shades of #00FFCC
Tints of #00FFCC
Examples of css and html codes for elements with #00FFCC color. Also use rgb(0,255,204) instead hex code.
.myTextColor { color: #00FFCC; }
<p style="color:#00FFCC">This sample text font color is #00FFCC.</p>
This text font color is #00FFCC.
.myBgColor { background-color: #00FFCC; }
<div style="background-color:#00FFCC">Inner text</div>
This div background color is #00FFCC.
.myBorderColor { border: 1px solid #00FFCC; }
<div style="border:3px solid #00FFCC">Div</div>
This div border color is #00FFCC.
.myOpacity80 { color: #00FFCC; opacity: 0.8; }
<p style="color:#00FFCC;opacity:0.8;">80%</p>
Text with #00FFCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00FFCC;}
<p style="text-shadow: 3px 3px 1px #00FFCC">Text here.</p>
This text has shadow with #00FFCC color.
.textShadow {text-shadow: 3px 3px 1px #00FFCC', 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00FFCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #00FFCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00FFCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00FFCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #00FFCC and red colors in old Internet Explorer.
/* css code */
.divShadow
{
-moz-box-shadow: 1px 1px 3px 2px #00FFCC;
-webkit-box-shadow: 1px 1px 3px 2px #00FFCC;
box-shadow: 1px 1px 3px 2px #00FFCC;
}
/* html code with inline style */
<div style="-moz-box-shadow: 1px 1px 3px 2px #00FFCC; -webkit-box-shadow: 1px 1px 3px 2px #00FFCC; box-shadow:1px 1px 3px 2px #00FFCC;">
Div content here
</div>
This text has color #00FFCC on black background.
This text has color #00FFCC on white background.
This text has black color on #00FFCC background.
This text has white color on #00FFCC background.
Complementary color for #hex is #FF0033.