HEX: #F2B0BB
RGB: (242,176,187)
#F2B0BB contains mainly red and blue colors. Web safe color of #F2B0BB is #FF99CC (or #F9C).
#F2B0BB color RGB value is (242,176,187).
RGB: (242,176,187) (95%,69%,73%)
R 242 of 255 = 95%
G 176 of 255 = 69%
B 187 of 255 = 73%
R + G + B ~ 79%. #F2B0BB is quite light color.
R + G + B =
242 + 176 + 187 = 605 (100%)
R 242 of 605 ~ 40%
G 176 of 605 ~ 29.09%
B 187 of 605 ~ 30.91%
#F2B0BB color CMYK value is (0,27,23,5).
CMYK: (0,27,23,5) C0M27Y23K5 (0%,27%,23%,5%) (0.00/0.27/0.23/0.05)
F2 | B0 | BB | |
---|---|---|---|
RGB | 242 | 176 | 187 |
HSL | 350° | 71.74% | 81.96% |
HSB/HSV | 350° | 27.27% | 94.90% |
CMYK | 0.00% | 27.27% | 22.73% |
5.10% |
HEX | F2 | B0 | BB |
Decimal | 242 | 176 | 187 |
Binary | 11110010 | 10110000 | 10111011 |
Octal | 362 | 260 | 273 |
Examples of css and html codes for elements with #F2B0BB color. Also use rgb(242,176,187) instead hex code.
.myTextColor { color: #F2B0BB; }
<p style="color:#F2B0BB">This sample text font color is #F2B0BB.</p>
This text font color is #F2B0BB.
.myBgColor { background-color: #F2B0BB; }
<div style="background-color:#F2B0BB">Inner text</div>
This div background color is #F2B0BB.
.myBorderColor { border: 1px solid #F2B0BB; }
<div style="border:3px solid #F2B0BB">Div</div>
This div border color is #F2B0BB.
.myOpacity80 { color: #F2B0BB; opacity: 0.8; }
<p style="color:#F2B0BB;opacity:0.8;">80%</p>
Text with #F2B0BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F2B0BB;}
<p style="text-shadow: 3px 3px 1px #F2B0BB">Text here.</p>
This text has shadow with #F2B0BB color.
.textShadow {text-shadow: 3px 3px 1px #F2B0BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F2B0BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F2B0BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F2B0BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F2B0BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F2B0BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F2B0BB; -webkit-box-shadow: 1px 1px 3px 2px #F2B0BB; box-shadow: 1px 1px 3px 2px #F2B0BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F2B0BB; -webkit-box-shadow: 1px 1px 3px 2px #F2B0BB; box-shadow:1px 1px 3px 2px #F2B0BB;">
Div content here</div>
This text has color #F2B0BB on black background.
This text has color #F2B0BB on white background.
This text has black color on #F2B0BB background.
This text has white color on #F2B0BB background.