HEX: #BEE37E
RGB: (190,227,126)
#BEE37E contains mainly red and green colors. Web safe color of #BEE37E is #CCCC66 (or #CC6).
#BEE37E color RGB value is (190,227,126).
RGB: (190,227,126) (75%,89%,49%)
R 190 of 255 = 75%
G 227 of 255 = 89%
B 126 of 255 = 49%
R + G + B ~ 71%. #BEE37E is quite light color.
R + G + B =
190 + 227 + 126 = 543 (100%)
R 190 of 543 ~ 34.99%
G 227 of 543 ~ 41.8%
B 126 of 543 ~ 23.2%
#BEE37E color CMYK value is (16,0,44,11).
CMYK: (16,0,44,11) C16M0Y44K11 (16%,0%,44%,11%) (0.16/0.00/0.44/0.11)
BE | E3 | 7E | |
---|---|---|---|
RGB | 190 | 227 | 126 |
HSL | 82° | 64.33% | 69.22% |
HSB/HSV | 82° | 44.49% | 89.02% |
CMYK | 16.30% | 0.00% | 44.49% |
10.98% |
HEX | BE | E3 | 7E |
Decimal | 190 | 227 | 126 |
Binary | 10111110 | 11100011 | 1111110 |
Octal | 276 | 343 | 176 |
Examples of css and html codes for elements with #BEE37E color. Also use rgb(190,227,126) instead hex code.
.myTextColor { color: #BEE37E; }
<p style="color:#BEE37E">This sample text font color is #BEE37E.</p>
This text font color is #BEE37E.
.myBgColor { background-color: #BEE37E; }
<div style="background-color:#BEE37E">Inner text</div>
This div background color is #BEE37E.
.myBorderColor { border: 1px solid #BEE37E; }
<div style="border:3px solid #BEE37E">Div</div>
This div border color is #BEE37E.
.myOpacity80 { color: #BEE37E; opacity: 0.8; }
<p style="color:#BEE37E;opacity:0.8;">80%</p>
Text with #BEE37E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BEE37E;}
<p style="text-shadow: 3px 3px 1px #BEE37E">Text here.</p>
This text has shadow with #BEE37E color.
.textShadow {text-shadow: 3px 3px 1px #BEE37E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BEE37E, 5px 5px 20px red">Text here.</p>
This text has shadow with #BEE37E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BEE37E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BEE37E, Direction=45, Strength=4)">Text</p>
This text has shadow with #BEE37E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BEE37E; -webkit-box-shadow: 1px 1px 3px 2px #BEE37E; box-shadow: 1px 1px 3px 2px #BEE37E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BEE37E; -webkit-box-shadow: 1px 1px 3px 2px #BEE37E; box-shadow:1px 1px 3px 2px #BEE37E;">
Div content here</div>
This text has color #BEE37E on black background.
This text has color #BEE37E on white background.
This text has black color on #BEE37E background.
This text has white color on #BEE37E background.