HEX: #75A67B
RGB: (117,166,123)
#75A67B contains red, green and blue colors in about the same proportion. Web safe color of #75A67B is #669966 (or #696).
#75A67B color RGB value is (117,166,123).
RGB: (117,166,123) (46%,65%,48%)
R 117 of 255 = 46%
G 166 of 255 = 65%
B 123 of 255 = 48%
R + G + B ~ 53%. #75A67B is middle color (not dark and not light).
R + G + B =
117 + 166 + 123 = 406 (100%)
R 117 of 406 ~ 28.82%
G 166 of 406 ~ 40.89%
B 123 of 406 ~ 30.3%
#75A67B color CMYK value is (30,0,26,35).
CMYK: (30,0,26,35) C30M0Y26K35 (30%,0%,26%,35%) (0.30/0.00/0.26/0.35)
75 | A6 | 7B | |
---|---|---|---|
RGB | 117 | 166 | 123 |
HSL | 127° | 21.59% | 55.49% |
HSB/HSV | 127° | 29.52% | 65.10% |
CMYK | 29.52% | 0.00% | 25.90% |
34.90% |
HEX | 75 | A6 | 7B |
Decimal | 117 | 166 | 123 |
Binary | 1110101 | 10100110 | 1111011 |
Octal | 165 | 246 | 173 |
Examples of css and html codes for elements with #75A67B color. Also use rgb(117,166,123) instead hex code.
.myTextColor { color: #75A67B; }
<p style="color:#75A67B">This sample text font color is #75A67B.</p>
This text font color is #75A67B.
.myBgColor { background-color: #75A67B; }
<div style="background-color:#75A67B">Inner text</div>
This div background color is #75A67B.
.myBorderColor { border: 1px solid #75A67B; }
<div style="border:3px solid #75A67B">Div</div>
This div border color is #75A67B.
.myOpacity80 { color: #75A67B; opacity: 0.8; }
<p style="color:#75A67B;opacity:0.8;">80%</p>
Text with #75A67B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #75A67B;}
<p style="text-shadow: 3px 3px 1px #75A67B">Text here.</p>
This text has shadow with #75A67B color.
.textShadow {text-shadow: 3px 3px 1px #75A67B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #75A67B, 5px 5px 20px red">Text here.</p>
This text has shadow with #75A67B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#75A67B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#75A67B, Direction=45, Strength=4)">Text</p>
This text has shadow with #75A67B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #75A67B; -webkit-box-shadow: 1px 1px 3px 2px #75A67B; box-shadow: 1px 1px 3px 2px #75A67B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #75A67B; -webkit-box-shadow: 1px 1px 3px 2px #75A67B; box-shadow:1px 1px 3px 2px #75A67B;">
Div content here</div>
This text has color #75A67B on black background.
This text has color #75A67B on white background.
This text has black color on #75A67B background.
This text has white color on #75A67B background.