HEX: #75D367
RGB: (117,211,103)
#75D367 contains mainly green color. Web safe color of #75D367 is #66CC66 (or #6C6).
#75D367 color RGB value is (117,211,103).
RGB: (117,211,103) (46%,83%,40%)
R 117 of 255 = 46%
G 211 of 255 = 83%
B 103 of 255 = 40%
R + G + B ~ 56%. #75D367 is middle color (not dark and not light).
R + G + B =
117 + 211 + 103 = 431 (100%)
R 117 of 431 ~ 27.15%
G 211 of 431 ~ 48.96%
B 103 of 431 ~ 23.9%
#75D367 color CMYK value is (45,0,51,17).
CMYK: (45,0,51,17) C45M0Y51K17 (45%,0%,51%,17%) (0.45/0.00/0.51/0.17)
75 | D3 | 67 | |
---|---|---|---|
RGB | 117 | 211 | 103 |
HSL | 112° | 55.10% | 61.57% |
HSB/HSV | 112° | 51.18% | 82.75% |
CMYK | 44.55% | 0.00% | 51.18% |
17.25% |
HEX | 75 | D3 | 67 |
Decimal | 117 | 211 | 103 |
Binary | 1110101 | 11010011 | 1100111 |
Octal | 165 | 323 | 147 |
Examples of css and html codes for elements with #75D367 color. Also use rgb(117,211,103) instead hex code.
.myTextColor { color: #75D367; }
<p style="color:#75D367">This sample text font color is #75D367.</p>
This text font color is #75D367.
.myBgColor { background-color: #75D367; }
<div style="background-color:#75D367">Inner text</div>
This div background color is #75D367.
.myBorderColor { border: 1px solid #75D367; }
<div style="border:3px solid #75D367">Div</div>
This div border color is #75D367.
.myOpacity80 { color: #75D367; opacity: 0.8; }
<p style="color:#75D367;opacity:0.8;">80%</p>
Text with #75D367 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #75D367;}
<p style="text-shadow: 3px 3px 1px #75D367">Text here.</p>
This text has shadow with #75D367 color.
.textShadow {text-shadow: 3px 3px 1px #75D367, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #75D367, 5px 5px 20px red">Text here.</p>
This text has shadow with #75D367 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#75D367, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#75D367, Direction=45, Strength=4)">Text</p>
This text has shadow with #75D367 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #75D367; -webkit-box-shadow: 1px 1px 3px 2px #75D367; box-shadow: 1px 1px 3px 2px #75D367; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #75D367; -webkit-box-shadow: 1px 1px 3px 2px #75D367; box-shadow:1px 1px 3px 2px #75D367;">
Div content here</div>
This text has color #75D367 on black background.
This text has color #75D367 on white background.
This text has black color on #75D367 background.
This text has white color on #75D367 background.