HEX: #F3D5CB
RGB: (243,213,203)
#F3D5CB contains red, green and blue colors in about the same proportion. Web safe color of #F3D5CB is #FFCCCC (or #FCC).
#F3D5CB color RGB value is (243,213,203).
RGB: (243,213,203) (95%,84%,80%)
R 243 of 255 = 95%
G 213 of 255 = 84%
B 203 of 255 = 80%
R + G + B ~ 86%. #F3D5CB is light color.
R + G + B =
243 + 213 + 203 = 659 (100%)
R 243 of 659 ~ 36.87%
G 213 of 659 ~ 32.32%
B 203 of 659 ~ 30.8%
#F3D5CB color CMYK value is (0,12,16,5).
CMYK: (0,12,16,5) C0M12Y16K5 (0%,12%,16%,5%) (0.00/0.12/0.16/0.05)
F3 | D5 | CB | |
---|---|---|---|
RGB | 243 | 213 | 203 |
HSL | 15° | 62.50% | 87.45% |
HSB/HSV | 15° | 16.46% | 95.29% |
CMYK | 0.00% | 12.35% | 16.46% |
4.71% |
HEX | F3 | D5 | CB |
Decimal | 243 | 213 | 203 |
Binary | 11110011 | 11010101 | 11001011 |
Octal | 363 | 325 | 313 |
Examples of css and html codes for elements with #F3D5CB color. Also use rgb(243,213,203) instead hex code.
.myTextColor { color: #F3D5CB; }
<p style="color:#F3D5CB">This sample text font color is #F3D5CB.</p>
This text font color is #F3D5CB.
.myBgColor { background-color: #F3D5CB; }
<div style="background-color:#F3D5CB">Inner text</div>
This div background color is #F3D5CB.
.myBorderColor { border: 1px solid #F3D5CB; }
<div style="border:3px solid #F3D5CB">Div</div>
This div border color is #F3D5CB.
.myOpacity80 { color: #F3D5CB; opacity: 0.8; }
<p style="color:#F3D5CB;opacity:0.8;">80%</p>
Text with #F3D5CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F3D5CB;}
<p style="text-shadow: 3px 3px 1px #F3D5CB">Text here.</p>
This text has shadow with #F3D5CB color.
.textShadow {text-shadow: 3px 3px 1px #F3D5CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F3D5CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F3D5CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F3D5CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F3D5CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F3D5CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F3D5CB; -webkit-box-shadow: 1px 1px 3px 2px #F3D5CB; box-shadow: 1px 1px 3px 2px #F3D5CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F3D5CB; -webkit-box-shadow: 1px 1px 3px 2px #F3D5CB; box-shadow:1px 1px 3px 2px #F3D5CB;">
Div content here</div>
This text has color #F3D5CB on black background.
This text has color #F3D5CB on white background.
This text has black color on #F3D5CB background.
This text has white color on #F3D5CB background.