HEX: #FFC9BB
RGB: (255,201,187)
#FFC9BB contains mainly red and green colors. Web safe color of #FFC9BB is #FFCCCC (or #FCC).
#FFC9BB color RGB value is (255,201,187).
RGB: (255,201,187) (100%,79%,73%)
R 255 of 255 = 100%
G 201 of 255 = 79%
B 187 of 255 = 73%
R + G + B ~ 84%. #FFC9BB is quite light color.
R + G + B =
255 + 201 + 187 = 643 (100%)
R 255 of 643 ~ 39.66%
G 201 of 643 ~ 31.26%
B 187 of 643 ~ 29.08%
#FFC9BB color CMYK value is (0,21,27,0).
CMYK: (0,21,27,0) C0M21Y27K0 (0%,21%,27%,0%) (0.00/0.21/0.27/0.00)
FF | C9 | BB | |
---|---|---|---|
RGB | 255 | 201 | 187 |
HSL | 12° | 100.00% | 86.67% |
HSB/HSV | 12° | 26.67% | 100.00% |
CMYK | 0.00% | 21.18% | 26.67% |
0.00% |
HEX | FF | C9 | BB |
Decimal | 255 | 201 | 187 |
Binary | 11111111 | 11001001 | 10111011 |
Octal | 377 | 311 | 273 |
Examples of css and html codes for elements with #FFC9BB color. Also use rgb(255,201,187) instead hex code.
.myTextColor { color: #FFC9BB; }
<p style="color:#FFC9BB">This sample text font color is #FFC9BB.</p>
This text font color is #FFC9BB.
.myBgColor { background-color: #FFC9BB; }
<div style="background-color:#FFC9BB">Inner text</div>
This div background color is #FFC9BB.
.myBorderColor { border: 1px solid #FFC9BB; }
<div style="border:3px solid #FFC9BB">Div</div>
This div border color is #FFC9BB.
.myOpacity80 { color: #FFC9BB; opacity: 0.8; }
<p style="color:#FFC9BB;opacity:0.8;">80%</p>
Text with #FFC9BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFC9BB;}
<p style="text-shadow: 3px 3px 1px #FFC9BB">Text here.</p>
This text has shadow with #FFC9BB color.
.textShadow {text-shadow: 3px 3px 1px #FFC9BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFC9BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFC9BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFC9BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFC9BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFC9BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFC9BB; -webkit-box-shadow: 1px 1px 3px 2px #FFC9BB; box-shadow: 1px 1px 3px 2px #FFC9BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFC9BB; -webkit-box-shadow: 1px 1px 3px 2px #FFC9BB; box-shadow:1px 1px 3px 2px #FFC9BB;">
Div content here</div>
This text has color #FFC9BB on black background.
This text has color #FFC9BB on white background.
This text has black color on #FFC9BB background.
This text has white color on #FFC9BB background.