HEX: #EEBEBE
RGB: (238,190,190)
#EEBEBE contains red, green and blue colors in about the same proportion. Web safe color of #EEBEBE is #FFCCCC (or #FCC).
#EEBEBE color RGB value is (238,190,190).
RGB: (238,190,190)
(93%, 75%, 75%)
R 238 of 255 = 93%
G 190 of 255 = 75%
B 190 of 255 = 75%
R + G + B ~ 81%. #EEBEBE is quite light color.
R + G + B = 238 + 190 + 190 = 618 (100%)
R 238 of 618 ~ 38.51%
G 190 of 618 ~ 30.74%
B 190 of 618 ~ 30.74'%
#EEBEBE color CMYK value is (0,20,20,7).
CMYK: (0,20,20,7) C0M20Y20K7 (0%,20%,20%,7%) (0.00/0.20/0.20/0.07)
Color #EEBEBE in popluar color models
EE | BE | BE | |
---|---|---|---|
RGB | 238 | 190 | 190 |
HSL | 0° | 58.54% | 83.92% |
HSB/HSV | 0° | 20.17% | 93.33% |
CMYK | 0.00% | 20.17% | 20.17% |
6.67% |
Color #EEBEBE in popluar number systems.
HEX | EE | BE | BE |
Decimal | 238 | 190 | 190 |
Binary | 11101110 | 10111110 | 10111110 |
Octal | 356 | 276 | 276 |
Shades of #EEBEBE
Tints of #EEBEBE
Examples of css and html codes for elements with #EEBEBE color. Also use rgb(238,190,190) instead hex code.
.myTextColor { color: #EEBEBE; }
<p style="color:#EEBEBE">This sample text font color is #EEBEBE.</p>
This text font color is #EEBEBE.
.myBgColor { background-color: #EEBEBE; }
<div style="background-color:#EEBEBE">Inner text</div>
This div background color is #EEBEBE.
.myBorderColor { border: 1px solid #EEBEBE; }
<div style="border:3px solid #EEBEBE">Div</div>
This div border color is #EEBEBE.
.myOpacity80 { color: #EEBEBE; opacity: 0.8; }
<p style="color:#EEBEBE;opacity:0.8;">80%</p>
Text with #EEBEBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEBEBE;}
<p style="text-shadow: 3px 3px 1px #EEBEBE">Text here.</p>
This text has shadow with #EEBEBE color.
.textShadow {text-shadow: 3px 3px 1px #EEBEBE', 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEBEBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEBEBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEBEBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEBEBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEBEBE and red colors in old Internet Explorer.
/* css code */
.divShadow
{
-moz-box-shadow: 1px 1px 3px 2px #EEBEBE;
-webkit-box-shadow: 1px 1px 3px 2px #EEBEBE;
box-shadow: 1px 1px 3px 2px #EEBEBE;
}
/* html code with inline style */
<div style="-moz-box-shadow: 1px 1px 3px 2px #EEBEBE; -webkit-box-shadow: 1px 1px 3px 2px #EEBEBE; box-shadow:1px 1px 3px 2px #EEBEBE;">
Div content here
</div>
This text has color #EEBEBE on black background.
This text has color #EEBEBE on white background.
This text has black color on #EEBEBE background.
This text has white color on #EEBEBE background.