HEX: #07D390
RGB: (7,211,144)
#07D390 contains mainly green color. Web safe color of #07D390 is #00CC99 (or #0C9).
#07D390 color RGB value is (7,211,144).
RGB: (7,211,144) (3%,83%,56%)
R 7 of 255 = 3%
G 211 of 255 = 83%
B 144 of 255 = 56%
R + G + B ~ 47%. #07D390 is middle color (not dark and not light).
R + G + B =
7 + 211 + 144 = 362 (100%)
R 7 of 362 ~ 1.93%
G 211 of 362 ~ 58.29%
B 144 of 362 ~ 39.78%
#07D390 color CMYK value is (97,0,32,17).
CMYK: (97,0,32,17) C97M0Y32K17 (97%,0%,32%,17%) (0.97/0.00/0.32/0.17)
07 | D3 | 90 | |
---|---|---|---|
RGB | 7 | 211 | 144 |
HSL | 160° | 93.58% | 42.75% |
HSB/HSV | 160° | 96.68% | 82.75% |
CMYK | 96.68% | 0.00% | 31.75% |
17.25% |
HEX | 07 | D3 | 90 |
Decimal | 7 | 211 | 144 |
Binary | 111 | 11010011 | 10010000 |
Octal | 7 | 323 | 220 |
Examples of css and html codes for elements with #07D390 color. Also use rgb(7,211,144) instead hex code.
.myTextColor { color: #07D390; }
<p style="color:#07D390">This sample text font color is #07D390.</p>
This text font color is #07D390.
.myBgColor { background-color: #07D390; }
<div style="background-color:#07D390">Inner text</div>
This div background color is #07D390.
.myBorderColor { border: 1px solid #07D390; }
<div style="border:3px solid #07D390">Div</div>
This div border color is #07D390.
.myOpacity80 { color: #07D390; opacity: 0.8; }
<p style="color:#07D390;opacity:0.8;">80%</p>
Text with #07D390 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #07D390;}
<p style="text-shadow: 3px 3px 1px #07D390">Text here.</p>
This text has shadow with #07D390 color.
.textShadow {text-shadow: 3px 3px 1px #07D390, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #07D390, 5px 5px 20px red">Text here.</p>
This text has shadow with #07D390 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#07D390, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#07D390, Direction=45, Strength=4)">Text</p>
This text has shadow with #07D390 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #07D390; -webkit-box-shadow: 1px 1px 3px 2px #07D390; box-shadow: 1px 1px 3px 2px #07D390; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #07D390; -webkit-box-shadow: 1px 1px 3px 2px #07D390; box-shadow:1px 1px 3px 2px #07D390;">
Div content here</div>
This text has color #07D390 on black background.
This text has color #07D390 on white background.
This text has black color on #07D390 background.
This text has white color on #07D390 background.