HEX: #75BB6E
RGB: (117,187,110)
#75BB6E contains mainly green color. Web safe color of #75BB6E is #66CC66 (or #6C6).
#75BB6E color RGB value is (117,187,110).
RGB: (117,187,110) (46%,73%,43%)
R 117 of 255 = 46%
G 187 of 255 = 73%
B 110 of 255 = 43%
R + G + B ~ 54%. #75BB6E is middle color (not dark and not light).
R + G + B =
117 + 187 + 110 = 414 (100%)
R 117 of 414 ~ 28.26%
G 187 of 414 ~ 45.17%
B 110 of 414 ~ 26.57%
#75BB6E color CMYK value is (37,0,41,27).
CMYK: (37,0,41,27) C37M0Y41K27 (37%,0%,41%,27%) (0.37/0.00/0.41/0.27)
75 | BB | 6E | |
---|---|---|---|
RGB | 117 | 187 | 110 |
HSL | 115° | 36.15% | 58.24% |
HSB/HSV | 115° | 41.18% | 73.33% |
CMYK | 37.43% | 0.00% | 41.18% |
26.67% |
HEX | 75 | BB | 6E |
Decimal | 117 | 187 | 110 |
Binary | 1110101 | 10111011 | 1101110 |
Octal | 165 | 273 | 156 |
Examples of css and html codes for elements with #75BB6E color. Also use rgb(117,187,110) instead hex code.
.myTextColor { color: #75BB6E; }
<p style="color:#75BB6E">This sample text font color is #75BB6E.</p>
This text font color is #75BB6E.
.myBgColor { background-color: #75BB6E; }
<div style="background-color:#75BB6E">Inner text</div>
This div background color is #75BB6E.
.myBorderColor { border: 1px solid #75BB6E; }
<div style="border:3px solid #75BB6E">Div</div>
This div border color is #75BB6E.
.myOpacity80 { color: #75BB6E; opacity: 0.8; }
<p style="color:#75BB6E;opacity:0.8;">80%</p>
Text with #75BB6E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #75BB6E;}
<p style="text-shadow: 3px 3px 1px #75BB6E">Text here.</p>
This text has shadow with #75BB6E color.
.textShadow {text-shadow: 3px 3px 1px #75BB6E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #75BB6E, 5px 5px 20px red">Text here.</p>
This text has shadow with #75BB6E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#75BB6E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#75BB6E, Direction=45, Strength=4)">Text</p>
This text has shadow with #75BB6E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #75BB6E; -webkit-box-shadow: 1px 1px 3px 2px #75BB6E; box-shadow: 1px 1px 3px 2px #75BB6E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #75BB6E; -webkit-box-shadow: 1px 1px 3px 2px #75BB6E; box-shadow:1px 1px 3px 2px #75BB6E;">
Div content here</div>
This text has color #75BB6E on black background.
This text has color #75BB6E on white background.
This text has black color on #75BB6E background.
This text has white color on #75BB6E background.