HEX: #739B5B
RGB: (115,155,91)
#739B5B contains mainly red and green colors. Web safe color of #739B5B is #669966 (or #696).
#739B5B color RGB value is (115,155,91).
RGB: (115,155,91) (45%,61%,36%)
R 115 of 255 = 45%
G 155 of 255 = 61%
B 91 of 255 = 36%
R + G + B ~ 47%. #739B5B is middle color (not dark and not light).
R + G + B =
115 + 155 + 91 = 361 (100%)
R 115 of 361 ~ 31.86%
G 155 of 361 ~ 42.94%
B 91 of 361 ~ 25.21%
#739B5B color CMYK value is (26,0,41,39).
CMYK: (26,0,41,39) C26M0Y41K39 (26%,0%,41%,39%) (0.26/0.00/0.41/0.39)
73 | 9B | 5B | |
---|---|---|---|
RGB | 115 | 155 | 91 |
HSL | 98° | 26.02% | 48.24% |
HSB/HSV | 98° | 41.29% | 60.78% |
CMYK | 25.81% | 0.00% | 41.29% |
39.22% |
HEX | 73 | 9B | 5B |
Decimal | 115 | 155 | 91 |
Binary | 1110011 | 10011011 | 1011011 |
Octal | 163 | 233 | 133 |
Examples of css and html codes for elements with #739B5B color. Also use rgb(115,155,91) instead hex code.
.myTextColor { color: #739B5B; }
<p style="color:#739B5B">This sample text font color is #739B5B.</p>
This text font color is #739B5B.
.myBgColor { background-color: #739B5B; }
<div style="background-color:#739B5B">Inner text</div>
This div background color is #739B5B.
.myBorderColor { border: 1px solid #739B5B; }
<div style="border:3px solid #739B5B">Div</div>
This div border color is #739B5B.
.myOpacity80 { color: #739B5B; opacity: 0.8; }
<p style="color:#739B5B;opacity:0.8;">80%</p>
Text with #739B5B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #739B5B;}
<p style="text-shadow: 3px 3px 1px #739B5B">Text here.</p>
This text has shadow with #739B5B color.
.textShadow {text-shadow: 3px 3px 1px #739B5B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #739B5B, 5px 5px 20px red">Text here.</p>
This text has shadow with #739B5B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#739B5B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#739B5B, Direction=45, Strength=4)">Text</p>
This text has shadow with #739B5B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #739B5B; -webkit-box-shadow: 1px 1px 3px 2px #739B5B; box-shadow: 1px 1px 3px 2px #739B5B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #739B5B; -webkit-box-shadow: 1px 1px 3px 2px #739B5B; box-shadow:1px 1px 3px 2px #739B5B;">
Div content here</div>
This text has color #739B5B on black background.
This text has color #739B5B on white background.
This text has black color on #739B5B background.
This text has white color on #739B5B background.