HEX: #4AEE4B
RGB: (74,238,75)
#4AEE4B contains mainly green color. Web safe color of #4AEE4B is #33FF33 (or #3F3).
#4AEE4B color RGB value is (74,238,75).
RGB: (74,238,75) (29%,93%,29%)
R 74 of 255 = 29%
G 238 of 255 = 93%
B 75 of 255 = 29%
R + G + B ~ 50%. #4AEE4B is middle color (not dark and not light).
R + G + B =
74 + 238 + 75 = 387 (100%)
R 74 of 387 ~ 19.12%
G 238 of 387 ~ 61.5%
B 75 of 387 ~ 19.38%
#4AEE4B color CMYK value is (69,0,68,7).
CMYK: (69,0,68,7) C69M0Y68K7 (69%,0%,68%,7%) (0.69/0.00/0.68/0.07)
4A | EE | 4B | |
---|---|---|---|
RGB | 74 | 238 | 75 |
HSL | 120° | 82.83% | 61.18% |
HSB/HSV | 120° | 68.91% | 93.33% |
CMYK | 68.91% | 0.00% | 68.49% |
6.67% |
HEX | 4A | EE | 4B |
Decimal | 74 | 238 | 75 |
Binary | 1001010 | 11101110 | 1001011 |
Octal | 112 | 356 | 113 |
Examples of css and html codes for elements with #4AEE4B color. Also use rgb(74,238,75) instead hex code.
.myTextColor { color: #4AEE4B; }
<p style="color:#4AEE4B">This sample text font color is #4AEE4B.</p>
This text font color is #4AEE4B.
.myBgColor { background-color: #4AEE4B; }
<div style="background-color:#4AEE4B">Inner text</div>
This div background color is #4AEE4B.
.myBorderColor { border: 1px solid #4AEE4B; }
<div style="border:3px solid #4AEE4B">Div</div>
This div border color is #4AEE4B.
.myOpacity80 { color: #4AEE4B; opacity: 0.8; }
<p style="color:#4AEE4B;opacity:0.8;">80%</p>
Text with #4AEE4B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4AEE4B;}
<p style="text-shadow: 3px 3px 1px #4AEE4B">Text here.</p>
This text has shadow with #4AEE4B color.
.textShadow {text-shadow: 3px 3px 1px #4AEE4B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4AEE4B, 5px 5px 20px red">Text here.</p>
This text has shadow with #4AEE4B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4AEE4B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4AEE4B, Direction=45, Strength=4)">Text</p>
This text has shadow with #4AEE4B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4AEE4B; -webkit-box-shadow: 1px 1px 3px 2px #4AEE4B; box-shadow: 1px 1px 3px 2px #4AEE4B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4AEE4B; -webkit-box-shadow: 1px 1px 3px 2px #4AEE4B; box-shadow:1px 1px 3px 2px #4AEE4B;">
Div content here</div>
This text has color #4AEE4B on black background.
This text has color #4AEE4B on white background.
This text has black color on #4AEE4B background.
This text has white color on #4AEE4B background.