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