HEX: #F0B8CB
RGB: (240,184,203)
#F0B8CB contains red, green and blue colors in about the same proportion. Web safe color of #F0B8CB is #FFCCCC (or #FCC).
#F0B8CB color RGB value is (240,184,203).
RGB: (240,184,203) (94%,72%,80%)
R 240 of 255 = 94%
G 184 of 255 = 72%
B 203 of 255 = 80%
R + G + B ~ 82%. #F0B8CB is quite light color.
R + G + B =
240 + 184 + 203 = 627 (100%)
R 240 of 627 ~ 38.28%
G 184 of 627 ~ 29.35%
B 203 of 627 ~ 32.38%
#F0B8CB color CMYK value is (0,23,15,6).
CMYK: (0,23,15,6) C0M23Y15K6 (0%,23%,15%,6%) (0.00/0.23/0.15/0.06)
F0 | B8 | CB | |
---|---|---|---|
RGB | 240 | 184 | 203 |
HSL | 340° | 65.12% | 83.14% |
HSB/HSV | 340° | 23.33% | 94.12% |
CMYK | 0.00% | 23.33% | 15.42% |
5.88% |
HEX | F0 | B8 | CB |
Decimal | 240 | 184 | 203 |
Binary | 11110000 | 10111000 | 11001011 |
Octal | 360 | 270 | 313 |
Examples of css and html codes for elements with #F0B8CB color. Also use rgb(240,184,203) instead hex code.
.myTextColor { color: #F0B8CB; }
<p style="color:#F0B8CB">This sample text font color is #F0B8CB.</p>
This text font color is #F0B8CB.
.myBgColor { background-color: #F0B8CB; }
<div style="background-color:#F0B8CB">Inner text</div>
This div background color is #F0B8CB.
.myBorderColor { border: 1px solid #F0B8CB; }
<div style="border:3px solid #F0B8CB">Div</div>
This div border color is #F0B8CB.
.myOpacity80 { color: #F0B8CB; opacity: 0.8; }
<p style="color:#F0B8CB;opacity:0.8;">80%</p>
Text with #F0B8CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0B8CB;}
<p style="text-shadow: 3px 3px 1px #F0B8CB">Text here.</p>
This text has shadow with #F0B8CB color.
.textShadow {text-shadow: 3px 3px 1px #F0B8CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0B8CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0B8CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0B8CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0B8CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0B8CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0B8CB; -webkit-box-shadow: 1px 1px 3px 2px #F0B8CB; box-shadow: 1px 1px 3px 2px #F0B8CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0B8CB; -webkit-box-shadow: 1px 1px 3px 2px #F0B8CB; box-shadow:1px 1px 3px 2px #F0B8CB;">
Div content here</div>
This text has color #F0B8CB on black background.
This text has color #F0B8CB on white background.
This text has black color on #F0B8CB background.
This text has white color on #F0B8CB background.