HEX: #E09FBB
RGB: (224,159,187)
#E09FBB contains mainly red and blue colors. Web safe color of #E09FBB is #CC99CC (or #C9C).
#E09FBB color RGB value is (224,159,187).
RGB: (224,159,187) (88%,62%,73%)
R 224 of 255 = 88%
G 159 of 255 = 62%
B 187 of 255 = 73%
R + G + B ~ 74%. #E09FBB is quite light color.
R + G + B =
224 + 159 + 187 = 570 (100%)
R 224 of 570 ~ 39.3%
G 159 of 570 ~ 27.89%
B 187 of 570 ~ 32.81%
#E09FBB color CMYK value is (0,29,17,12).
CMYK: (0,29,17,12) C0M29Y17K12 (0%,29%,17%,12%) (0.00/0.29/0.17/0.12)
E0 | 9F | BB | |
---|---|---|---|
RGB | 224 | 159 | 187 |
HSL | 334° | 51.18% | 75.10% |
HSB/HSV | 334° | 29.02% | 87.84% |
CMYK | 0.00% | 29.02% | 16.52% |
12.16% |
HEX | E0 | 9F | BB |
Decimal | 224 | 159 | 187 |
Binary | 11100000 | 10011111 | 10111011 |
Octal | 340 | 237 | 273 |
Examples of css and html codes for elements with #E09FBB color. Also use rgb(224,159,187) instead hex code.
.myTextColor { color: #E09FBB; }
<p style="color:#E09FBB">This sample text font color is #E09FBB.</p>
This text font color is #E09FBB.
.myBgColor { background-color: #E09FBB; }
<div style="background-color:#E09FBB">Inner text</div>
This div background color is #E09FBB.
.myBorderColor { border: 1px solid #E09FBB; }
<div style="border:3px solid #E09FBB">Div</div>
This div border color is #E09FBB.
.myOpacity80 { color: #E09FBB; opacity: 0.8; }
<p style="color:#E09FBB;opacity:0.8;">80%</p>
Text with #E09FBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E09FBB;}
<p style="text-shadow: 3px 3px 1px #E09FBB">Text here.</p>
This text has shadow with #E09FBB color.
.textShadow {text-shadow: 3px 3px 1px #E09FBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E09FBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E09FBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E09FBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E09FBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E09FBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E09FBB; -webkit-box-shadow: 1px 1px 3px 2px #E09FBB; box-shadow: 1px 1px 3px 2px #E09FBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E09FBB; -webkit-box-shadow: 1px 1px 3px 2px #E09FBB; box-shadow:1px 1px 3px 2px #E09FBB;">
Div content here</div>
This text has color #E09FBB on black background.
This text has color #E09FBB on white background.
This text has black color on #E09FBB background.
This text has white color on #E09FBB background.