HEX: #7DE441
RGB: (125,228,65)
#7DE441 contains mainly green color. Web safe color of #7DE441 is #66CC33 (or #6C3).
#7DE441 color RGB value is (125,228,65).
RGB: (125,228,65) (49%,89%,25%)
R 125 of 255 = 49%
G 228 of 255 = 89%
B 65 of 255 = 25%
R + G + B ~ 54%. #7DE441 is middle color (not dark and not light).
R + G + B =
125 + 228 + 65 = 418 (100%)
R 125 of 418 ~ 29.9%
G 228 of 418 ~ 54.55%
B 65 of 418 ~ 15.55%
#7DE441 color CMYK value is (45,0,71,11).
CMYK: (45,0,71,11) C45M0Y71K11 (45%,0%,71%,11%) (0.45/0.00/0.71/0.11)
7D | E4 | 41 | |
---|---|---|---|
RGB | 125 | 228 | 65 |
HSL | 98° | 75.12% | 57.45% |
HSB/HSV | 98° | 71.49% | 89.41% |
CMYK | 45.18% | 0.00% | 71.49% |
10.59% |
HEX | 7D | E4 | 41 |
Decimal | 125 | 228 | 65 |
Binary | 1111101 | 11100100 | 1000001 |
Octal | 175 | 344 | 101 |
Examples of css and html codes for elements with #7DE441 color. Also use rgb(125,228,65) instead hex code.
.myTextColor { color: #7DE441; }
<p style="color:#7DE441">This sample text font color is #7DE441.</p>
This text font color is #7DE441.
.myBgColor { background-color: #7DE441; }
<div style="background-color:#7DE441">Inner text</div>
This div background color is #7DE441.
.myBorderColor { border: 1px solid #7DE441; }
<div style="border:3px solid #7DE441">Div</div>
This div border color is #7DE441.
.myOpacity80 { color: #7DE441; opacity: 0.8; }
<p style="color:#7DE441;opacity:0.8;">80%</p>
Text with #7DE441 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DE441;}
<p style="text-shadow: 3px 3px 1px #7DE441">Text here.</p>
This text has shadow with #7DE441 color.
.textShadow {text-shadow: 3px 3px 1px #7DE441, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DE441, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DE441 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DE441, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DE441, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DE441 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DE441; -webkit-box-shadow: 1px 1px 3px 2px #7DE441; box-shadow: 1px 1px 3px 2px #7DE441; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DE441; -webkit-box-shadow: 1px 1px 3px 2px #7DE441; box-shadow:1px 1px 3px 2px #7DE441;">
Div content here</div>
This text has color #7DE441 on black background.
This text has color #7DE441 on white background.
This text has black color on #7DE441 background.
This text has white color on #7DE441 background.