HEX: #7EF9BE
RGB: (126,249,190)
#7EF9BE contains mainly green and blue colors. Web safe color of #7EF9BE is #66FFCC (or #6FC).
#7EF9BE color RGB value is (126,249,190).
RGB: (126,249,190) (49%,98%,75%)
R 126 of 255 = 49%
G 249 of 255 = 98%
B 190 of 255 = 75%
R + G + B ~ 74%. #7EF9BE is quite light color.
R + G + B =
126 + 249 + 190 = 565 (100%)
R 126 of 565 ~ 22.3%
G 249 of 565 ~ 44.07%
B 190 of 565 ~ 33.63%
#7EF9BE color CMYK value is (49,0,24,2).
CMYK: (49,0,24,2) C49M0Y24K2 (49%,0%,24%,2%) (0.49/0.00/0.24/0.02)
7E | F9 | BE | |
---|---|---|---|
RGB | 126 | 249 | 190 |
HSL | 151° | 91.11% | 73.53% |
HSB/HSV | 151° | 49.40% | 97.65% |
CMYK | 49.40% | 0.00% | 23.69% |
2.35% |
HEX | 7E | F9 | BE |
Decimal | 126 | 249 | 190 |
Binary | 1111110 | 11111001 | 10111110 |
Octal | 176 | 371 | 276 |
Examples of css and html codes for elements with #7EF9BE color. Also use rgb(126,249,190) instead hex code.
.myTextColor { color: #7EF9BE; }
<p style="color:#7EF9BE">This sample text font color is #7EF9BE.</p>
This text font color is #7EF9BE.
.myBgColor { background-color: #7EF9BE; }
<div style="background-color:#7EF9BE">Inner text</div>
This div background color is #7EF9BE.
.myBorderColor { border: 1px solid #7EF9BE; }
<div style="border:3px solid #7EF9BE">Div</div>
This div border color is #7EF9BE.
.myOpacity80 { color: #7EF9BE; opacity: 0.8; }
<p style="color:#7EF9BE;opacity:0.8;">80%</p>
Text with #7EF9BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EF9BE;}
<p style="text-shadow: 3px 3px 1px #7EF9BE">Text here.</p>
This text has shadow with #7EF9BE color.
.textShadow {text-shadow: 3px 3px 1px #7EF9BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EF9BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EF9BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EF9BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EF9BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EF9BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EF9BE; -webkit-box-shadow: 1px 1px 3px 2px #7EF9BE; box-shadow: 1px 1px 3px 2px #7EF9BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EF9BE; -webkit-box-shadow: 1px 1px 3px 2px #7EF9BE; box-shadow:1px 1px 3px 2px #7EF9BE;">
Div content here</div>
This text has color #7EF9BE on black background.
This text has color #7EF9BE on white background.
This text has black color on #7EF9BE background.
This text has white color on #7EF9BE background.