HEX: #F3C9DB
RGB: (243,201,219)
#F3C9DB contains red, green and blue colors in about the same proportion. Web safe color of #F3C9DB is #FFCCCC (or #FCC).
#F3C9DB color RGB value is (243,201,219).
RGB: (243,201,219) (95%,79%,86%)
R 243 of 255 = 95%
G 201 of 255 = 79%
B 219 of 255 = 86%
R + G + B ~ 87%. #F3C9DB is light color.
R + G + B =
243 + 201 + 219 = 663 (100%)
R 243 of 663 ~ 36.65%
G 201 of 663 ~ 30.32%
B 219 of 663 ~ 33.03%
#F3C9DB color CMYK value is (0,17,10,5).
CMYK: (0,17,10,5) C0M17Y10K5 (0%,17%,10%,5%) (0.00/0.17/0.10/0.05)
F3 | C9 | DB | |
---|---|---|---|
RGB | 243 | 201 | 219 |
HSL | 334° | 63.64% | 87.06% |
HSB/HSV | 334° | 17.28% | 95.29% |
CMYK | 0.00% | 17.28% | 9.88% |
4.71% |
HEX | F3 | C9 | DB |
Decimal | 243 | 201 | 219 |
Binary | 11110011 | 11001001 | 11011011 |
Octal | 363 | 311 | 333 |
Examples of css and html codes for elements with #F3C9DB color. Also use rgb(243,201,219) instead hex code.
.myTextColor { color: #F3C9DB; }
<p style="color:#F3C9DB">This sample text font color is #F3C9DB.</p>
This text font color is #F3C9DB.
.myBgColor { background-color: #F3C9DB; }
<div style="background-color:#F3C9DB">Inner text</div>
This div background color is #F3C9DB.
.myBorderColor { border: 1px solid #F3C9DB; }
<div style="border:3px solid #F3C9DB">Div</div>
This div border color is #F3C9DB.
.myOpacity80 { color: #F3C9DB; opacity: 0.8; }
<p style="color:#F3C9DB;opacity:0.8;">80%</p>
Text with #F3C9DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F3C9DB;}
<p style="text-shadow: 3px 3px 1px #F3C9DB">Text here.</p>
This text has shadow with #F3C9DB color.
.textShadow {text-shadow: 3px 3px 1px #F3C9DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F3C9DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F3C9DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F3C9DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F3C9DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F3C9DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F3C9DB; -webkit-box-shadow: 1px 1px 3px 2px #F3C9DB; box-shadow: 1px 1px 3px 2px #F3C9DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F3C9DB; -webkit-box-shadow: 1px 1px 3px 2px #F3C9DB; box-shadow:1px 1px 3px 2px #F3C9DB;">
Div content here</div>
This text has color #F3C9DB on black background.
This text has color #F3C9DB on white background.
This text has black color on #F3C9DB background.
This text has white color on #F3C9DB background.