HEX: #7EB993
RGB: (126,185,147)
#7EB993 contains red, green and blue colors in about the same proportion. Web safe color of #7EB993 is #66CC99 (or #6C9).
#7EB993 color RGB value is (126,185,147).
RGB: (126,185,147) (49%,73%,58%)
R 126 of 255 = 49%
G 185 of 255 = 73%
B 147 of 255 = 58%
R + G + B ~ 60%. #7EB993 is middle color (not dark and not light).
R + G + B =
126 + 185 + 147 = 458 (100%)
R 126 of 458 ~ 27.51%
G 185 of 458 ~ 40.39%
B 147 of 458 ~ 32.1%
#7EB993 color CMYK value is (32,0,21,27).
CMYK: (32,0,21,27) C32M0Y21K27 (32%,0%,21%,27%) (0.32/0.00/0.21/0.27)
7E | B9 | 93 | |
---|---|---|---|
RGB | 126 | 185 | 147 |
HSL | 141° | 29.65% | 60.98% |
HSB/HSV | 141° | 31.89% | 72.55% |
CMYK | 31.89% | 0.00% | 20.54% |
27.45% |
HEX | 7E | B9 | 93 |
Decimal | 126 | 185 | 147 |
Binary | 1111110 | 10111001 | 10010011 |
Octal | 176 | 271 | 223 |
Examples of css and html codes for elements with #7EB993 color. Also use rgb(126,185,147) instead hex code.
.myTextColor { color: #7EB993; }
<p style="color:#7EB993">This sample text font color is #7EB993.</p>
This text font color is #7EB993.
.myBgColor { background-color: #7EB993; }
<div style="background-color:#7EB993">Inner text</div>
This div background color is #7EB993.
.myBorderColor { border: 1px solid #7EB993; }
<div style="border:3px solid #7EB993">Div</div>
This div border color is #7EB993.
.myOpacity80 { color: #7EB993; opacity: 0.8; }
<p style="color:#7EB993;opacity:0.8;">80%</p>
Text with #7EB993 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EB993;}
<p style="text-shadow: 3px 3px 1px #7EB993">Text here.</p>
This text has shadow with #7EB993 color.
.textShadow {text-shadow: 3px 3px 1px #7EB993, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EB993, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EB993 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EB993, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EB993, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EB993 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EB993; -webkit-box-shadow: 1px 1px 3px 2px #7EB993; box-shadow: 1px 1px 3px 2px #7EB993; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EB993; -webkit-box-shadow: 1px 1px 3px 2px #7EB993; box-shadow:1px 1px 3px 2px #7EB993;">
Div content here</div>
This text has color #7EB993 on black background.
This text has color #7EB993 on white background.
This text has black color on #7EB993 background.
This text has white color on #7EB993 background.