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