HEX: #FFF5CB
RGB: (255,245,203)
#FFF5CB contains red, green and blue colors in about the same proportion. Web safe color of #FFF5CB is #FFFFCC (or #FFC).
#FFF5CB color RGB value is (255,245,203).
RGB: (255,245,203) (100%,96%,80%)
R 255 of 255 = 100%
G 245 of 255 = 96%
B 203 of 255 = 80%
R + G + B ~ 92%. #FFF5CB is light color.
R + G + B =
255 + 245 + 203 = 703 (100%)
R 255 of 703 ~ 36.27%
G 245 of 703 ~ 34.85%
B 203 of 703 ~ 28.88%
#FFF5CB color CMYK value is (0,4,20,0).
CMYK: (0,4,20,0) C0M4Y20K0 (0%,4%,20%,0%) (0.00/0.04/0.20/0.00)
FF | F5 | CB | |
---|---|---|---|
RGB | 255 | 245 | 203 |
HSL | 48° | 100.00% | 89.80% |
HSB/HSV | 48° | 20.39% | 100.00% |
CMYK | 0.00% | 3.92% | 20.39% |
0.00% |
HEX | FF | F5 | CB |
Decimal | 255 | 245 | 203 |
Binary | 11111111 | 11110101 | 11001011 |
Octal | 377 | 365 | 313 |
Examples of css and html codes for elements with #FFF5CB color. Also use rgb(255,245,203) instead hex code.
.myTextColor { color: #FFF5CB; }
<p style="color:#FFF5CB">This sample text font color is #FFF5CB.</p>
This text font color is #FFF5CB.
.myBgColor { background-color: #FFF5CB; }
<div style="background-color:#FFF5CB">Inner text</div>
This div background color is #FFF5CB.
.myBorderColor { border: 1px solid #FFF5CB; }
<div style="border:3px solid #FFF5CB">Div</div>
This div border color is #FFF5CB.
.myOpacity80 { color: #FFF5CB; opacity: 0.8; }
<p style="color:#FFF5CB;opacity:0.8;">80%</p>
Text with #FFF5CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFF5CB;}
<p style="text-shadow: 3px 3px 1px #FFF5CB">Text here.</p>
This text has shadow with #FFF5CB color.
.textShadow {text-shadow: 3px 3px 1px #FFF5CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFF5CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFF5CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFF5CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFF5CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFF5CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFF5CB; -webkit-box-shadow: 1px 1px 3px 2px #FFF5CB; box-shadow: 1px 1px 3px 2px #FFF5CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFF5CB; -webkit-box-shadow: 1px 1px 3px 2px #FFF5CB; box-shadow:1px 1px 3px 2px #FFF5CB;">
Div content here</div>
This text has color #FFF5CB on black background.
This text has color #FFF5CB on white background.
This text has black color on #FFF5CB background.
This text has white color on #FFF5CB background.