HEX: #74D07B
RGB: (116,208,123)
#74D07B contains mainly green color. Web safe color of #74D07B is #66CC66 (or #6C6).
#74D07B color RGB value is (116,208,123).
RGB: (116,208,123) (45%,82%,48%)
R 116 of 255 = 45%
G 208 of 255 = 82%
B 123 of 255 = 48%
R + G + B ~ 58%. #74D07B is middle color (not dark and not light).
R + G + B =
116 + 208 + 123 = 447 (100%)
R 116 of 447 ~ 25.95%
G 208 of 447 ~ 46.53%
B 123 of 447 ~ 27.52%
#74D07B color CMYK value is (44,0,41,18).
CMYK: (44,0,41,18) C44M0Y41K18 (44%,0%,41%,18%) (0.44/0.00/0.41/0.18)
74 | D0 | 7B | |
---|---|---|---|
RGB | 116 | 208 | 123 |
HSL | 125° | 49.46% | 63.53% |
HSB/HSV | 125° | 44.23% | 81.57% |
CMYK | 44.23% | 0.00% | 40.87% |
18.43% |
HEX | 74 | D0 | 7B |
Decimal | 116 | 208 | 123 |
Binary | 1110100 | 11010000 | 1111011 |
Octal | 164 | 320 | 173 |
Examples of css and html codes for elements with #74D07B color. Also use rgb(116,208,123) instead hex code.
.myTextColor { color: #74D07B; }
<p style="color:#74D07B">This sample text font color is #74D07B.</p>
This text font color is #74D07B.
.myBgColor { background-color: #74D07B; }
<div style="background-color:#74D07B">Inner text</div>
This div background color is #74D07B.
.myBorderColor { border: 1px solid #74D07B; }
<div style="border:3px solid #74D07B">Div</div>
This div border color is #74D07B.
.myOpacity80 { color: #74D07B; opacity: 0.8; }
<p style="color:#74D07B;opacity:0.8;">80%</p>
Text with #74D07B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74D07B;}
<p style="text-shadow: 3px 3px 1px #74D07B">Text here.</p>
This text has shadow with #74D07B color.
.textShadow {text-shadow: 3px 3px 1px #74D07B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74D07B, 5px 5px 20px red">Text here.</p>
This text has shadow with #74D07B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74D07B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74D07B, Direction=45, Strength=4)">Text</p>
This text has shadow with #74D07B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74D07B; -webkit-box-shadow: 1px 1px 3px 2px #74D07B; box-shadow: 1px 1px 3px 2px #74D07B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74D07B; -webkit-box-shadow: 1px 1px 3px 2px #74D07B; box-shadow:1px 1px 3px 2px #74D07B;">
Div content here</div>
This text has color #74D07B on black background.
This text has color #74D07B on white background.
This text has black color on #74D07B background.
This text has white color on #74D07B background.