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