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