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