HEX: #7EBFB0
RGB: (126,191,176)
#7EBFB0 contains mainly green and blue colors. Web safe color of #7EBFB0 is #66CC99 (or #6C9).
#7EBFB0 color RGB value is (126,191,176).
RGB: (126,191,176) (49%,75%,69%)
R 126 of 255 = 49%
G 191 of 255 = 75%
B 176 of 255 = 69%
R + G + B ~ 64%. #7EBFB0 is quite light color.
R + G + B =
126 + 191 + 176 = 493 (100%)
R 126 of 493 ~ 25.56%
G 191 of 493 ~ 38.74%
B 176 of 493 ~ 35.7%
#7EBFB0 color CMYK value is (34,0,8,25).
CMYK: (34,0,8,25) C34M0Y8K25 (34%,0%,8%,25%) (0.34/0.00/0.08/0.25)
7E | BF | B0 | |
---|---|---|---|
RGB | 126 | 191 | 176 |
HSL | 166° | 33.68% | 62.16% |
HSB/HSV | 166° | 34.03% | 74.90% |
CMYK | 34.03% | 0.00% | 7.85% |
25.10% |
HEX | 7E | BF | B0 |
Decimal | 126 | 191 | 176 |
Binary | 1111110 | 10111111 | 10110000 |
Octal | 176 | 277 | 260 |
Examples of css and html codes for elements with #7EBFB0 color. Also use rgb(126,191,176) instead hex code.
.myTextColor { color: #7EBFB0; }
<p style="color:#7EBFB0">This sample text font color is #7EBFB0.</p>
This text font color is #7EBFB0.
.myBgColor { background-color: #7EBFB0; }
<div style="background-color:#7EBFB0">Inner text</div>
This div background color is #7EBFB0.
.myBorderColor { border: 1px solid #7EBFB0; }
<div style="border:3px solid #7EBFB0">Div</div>
This div border color is #7EBFB0.
.myOpacity80 { color: #7EBFB0; opacity: 0.8; }
<p style="color:#7EBFB0;opacity:0.8;">80%</p>
Text with #7EBFB0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EBFB0;}
<p style="text-shadow: 3px 3px 1px #7EBFB0">Text here.</p>
This text has shadow with #7EBFB0 color.
.textShadow {text-shadow: 3px 3px 1px #7EBFB0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EBFB0, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EBFB0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EBFB0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EBFB0, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EBFB0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EBFB0; -webkit-box-shadow: 1px 1px 3px 2px #7EBFB0; box-shadow: 1px 1px 3px 2px #7EBFB0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EBFB0; -webkit-box-shadow: 1px 1px 3px 2px #7EBFB0; box-shadow:1px 1px 3px 2px #7EBFB0;">
Div content here</div>
This text has color #7EBFB0 on black background.
This text has color #7EBFB0 on white background.
This text has black color on #7EBFB0 background.
This text has white color on #7EBFB0 background.