HEX: #EF7F7B
RGB: (239,127,123)
#EF7F7B contains mainly red color. Web safe color of #EF7F7B is #FF6666 (or #F66).
#EF7F7B color RGB value is (239,127,123).
RGB: (239,127,123) (94%,50%,48%)
R 239 of 255 = 94%
G 127 of 255 = 50%
B 123 of 255 = 48%
R + G + B ~ 64%. #EF7F7B is quite light color.
R + G + B =
239 + 127 + 123 = 489 (100%)
R 239 of 489 ~ 48.88%
G 127 of 489 ~ 25.97%
B 123 of 489 ~ 25.15%
#EF7F7B color CMYK value is (0,47,49,6).
CMYK: (0,47,49,6) C0M47Y49K6 (0%,47%,49%,6%) (0.00/0.47/0.49/0.06)
EF | 7F | 7B | |
---|---|---|---|
RGB | 239 | 127 | 123 |
HSL | 2° | 78.38% | 70.98% |
HSB/HSV | 2° | 48.54% | 93.73% |
CMYK | 0.00% | 46.86% | 48.54% |
6.27% |
HEX | EF | 7F | 7B |
Decimal | 239 | 127 | 123 |
Binary | 11101111 | 1111111 | 1111011 |
Octal | 357 | 177 | 173 |
Examples of css and html codes for elements with #EF7F7B color. Also use rgb(239,127,123) instead hex code.
.myTextColor { color: #EF7F7B; }
<p style="color:#EF7F7B">This sample text font color is #EF7F7B.</p>
This text font color is #EF7F7B.
.myBgColor { background-color: #EF7F7B; }
<div style="background-color:#EF7F7B">Inner text</div>
This div background color is #EF7F7B.
.myBorderColor { border: 1px solid #EF7F7B; }
<div style="border:3px solid #EF7F7B">Div</div>
This div border color is #EF7F7B.
.myOpacity80 { color: #EF7F7B; opacity: 0.8; }
<p style="color:#EF7F7B;opacity:0.8;">80%</p>
Text with #EF7F7B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF7F7B;}
<p style="text-shadow: 3px 3px 1px #EF7F7B">Text here.</p>
This text has shadow with #EF7F7B color.
.textShadow {text-shadow: 3px 3px 1px #EF7F7B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF7F7B, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF7F7B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF7F7B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF7F7B, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF7F7B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF7F7B; -webkit-box-shadow: 1px 1px 3px 2px #EF7F7B; box-shadow: 1px 1px 3px 2px #EF7F7B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF7F7B; -webkit-box-shadow: 1px 1px 3px 2px #EF7F7B; box-shadow:1px 1px 3px 2px #EF7F7B;">
Div content here</div>
This text has color #EF7F7B on black background.
This text has color #EF7F7B on white background.
This text has black color on #EF7F7B background.
This text has white color on #EF7F7B background.