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