HEX: #EE5BBF
RGB: (238,91,191)
#EE5BBF contains mainly red and blue colors. Web safe color of #EE5BBF is #FF66CC (or #F6C).
#EE5BBF color RGB value is (238,91,191).
RGB: (238,91,191) (93%,36%,75%)
R 238 of 255 = 93%
G 91 of 255 = 36%
B 191 of 255 = 75%
R + G + B ~ 68%. #EE5BBF is quite light color.
R + G + B =
238 + 91 + 191 = 520 (100%)
R 238 of 520 ~ 45.77%
G 91 of 520 ~ 17.5%
B 191 of 520 ~ 36.73%
#EE5BBF color CMYK value is (0,62,20,7).
CMYK: (0,62,20,7) C0M62Y20K7 (0%,62%,20%,7%) (0.00/0.62/0.20/0.07)
EE | 5B | BF | |
---|---|---|---|
RGB | 238 | 91 | 191 |
HSL | 319° | 81.22% | 64.51% |
HSB/HSV | 319° | 61.76% | 93.33% |
CMYK | 0.00% | 61.76% | 19.75% |
6.67% |
HEX | EE | 5B | BF |
Decimal | 238 | 91 | 191 |
Binary | 11101110 | 1011011 | 10111111 |
Octal | 356 | 133 | 277 |
Examples of css and html codes for elements with #EE5BBF color. Also use rgb(238,91,191) instead hex code.
.myTextColor { color: #EE5BBF; }
<p style="color:#EE5BBF">This sample text font color is #EE5BBF.</p>
This text font color is #EE5BBF.
.myBgColor { background-color: #EE5BBF; }
<div style="background-color:#EE5BBF">Inner text</div>
This div background color is #EE5BBF.
.myBorderColor { border: 1px solid #EE5BBF; }
<div style="border:3px solid #EE5BBF">Div</div>
This div border color is #EE5BBF.
.myOpacity80 { color: #EE5BBF; opacity: 0.8; }
<p style="color:#EE5BBF;opacity:0.8;">80%</p>
Text with #EE5BBF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE5BBF;}
<p style="text-shadow: 3px 3px 1px #EE5BBF">Text here.</p>
This text has shadow with #EE5BBF color.
.textShadow {text-shadow: 3px 3px 1px #EE5BBF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE5BBF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE5BBF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE5BBF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE5BBF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE5BBF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE5BBF; -webkit-box-shadow: 1px 1px 3px 2px #EE5BBF; box-shadow: 1px 1px 3px 2px #EE5BBF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE5BBF; -webkit-box-shadow: 1px 1px 3px 2px #EE5BBF; box-shadow:1px 1px 3px 2px #EE5BBF;">
Div content here</div>
This text has color #EE5BBF on black background.
This text has color #EE5BBF on white background.
This text has black color on #EE5BBF background.
This text has white color on #EE5BBF background.