HEX: #EF959B
RGB: (239,149,155)
#EF959B contains mainly red color. Web safe color of #EF959B is #FF9999 (or #F99).
#EF959B color RGB value is (239,149,155).
RGB: (239,149,155) (94%,58%,61%)
R 239 of 255 = 94%
G 149 of 255 = 58%
B 155 of 255 = 61%
R + G + B ~ 71%. #EF959B is quite light color.
R + G + B =
239 + 149 + 155 = 543 (100%)
R 239 of 543 ~ 44.01%
G 149 of 543 ~ 27.44%
B 155 of 543 ~ 28.55%
#EF959B color CMYK value is (0,38,35,6).
CMYK: (0,38,35,6) C0M38Y35K6 (0%,38%,35%,6%) (0.00/0.38/0.35/0.06)
EF | 95 | 9B | |
---|---|---|---|
RGB | 239 | 149 | 155 |
HSL | 356° | 73.77% | 76.08% |
HSB/HSV | 356° | 37.66% | 93.73% |
CMYK | 0.00% | 37.66% | 35.15% |
6.27% |
HEX | EF | 95 | 9B |
Decimal | 239 | 149 | 155 |
Binary | 11101111 | 10010101 | 10011011 |
Octal | 357 | 225 | 233 |
Examples of css and html codes for elements with #EF959B color. Also use rgb(239,149,155) instead hex code.
.myTextColor { color: #EF959B; }
<p style="color:#EF959B">This sample text font color is #EF959B.</p>
This text font color is #EF959B.
.myBgColor { background-color: #EF959B; }
<div style="background-color:#EF959B">Inner text</div>
This div background color is #EF959B.
.myBorderColor { border: 1px solid #EF959B; }
<div style="border:3px solid #EF959B">Div</div>
This div border color is #EF959B.
.myOpacity80 { color: #EF959B; opacity: 0.8; }
<p style="color:#EF959B;opacity:0.8;">80%</p>
Text with #EF959B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF959B;}
<p style="text-shadow: 3px 3px 1px #EF959B">Text here.</p>
This text has shadow with #EF959B color.
.textShadow {text-shadow: 3px 3px 1px #EF959B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF959B, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF959B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF959B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF959B, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF959B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF959B; -webkit-box-shadow: 1px 1px 3px 2px #EF959B; box-shadow: 1px 1px 3px 2px #EF959B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF959B; -webkit-box-shadow: 1px 1px 3px 2px #EF959B; box-shadow:1px 1px 3px 2px #EF959B;">
Div content here</div>
This text has color #EF959B on black background.
This text has color #EF959B on white background.
This text has black color on #EF959B background.
This text has white color on #EF959B background.