HEX: #749C5B
RGB: (116,156,91)
#749C5B contains mainly red and green colors. Web safe color of #749C5B is #669966 (or #696).
#749C5B color RGB value is (116,156,91).
RGB: (116,156,91) (45%,61%,36%)
R 116 of 255 = 45%
G 156 of 255 = 61%
B 91 of 255 = 36%
R + G + B ~ 47%. #749C5B is middle color (not dark and not light).
R + G + B =
116 + 156 + 91 = 363 (100%)
R 116 of 363 ~ 31.96%
G 156 of 363 ~ 42.98%
B 91 of 363 ~ 25.07%
#749C5B color CMYK value is (26,0,42,39).
CMYK: (26,0,42,39) C26M0Y42K39 (26%,0%,42%,39%) (0.26/0.00/0.42/0.39)
74 | 9C | 5B | |
---|---|---|---|
RGB | 116 | 156 | 91 |
HSL | 97° | 26.32% | 48.43% |
HSB/HSV | 97° | 41.67% | 61.18% |
CMYK | 25.64% | 0.00% | 41.67% |
38.82% |
HEX | 74 | 9C | 5B |
Decimal | 116 | 156 | 91 |
Binary | 1110100 | 10011100 | 1011011 |
Octal | 164 | 234 | 133 |
Examples of css and html codes for elements with #749C5B color. Also use rgb(116,156,91) instead hex code.
.myTextColor { color: #749C5B; }
<p style="color:#749C5B">This sample text font color is #749C5B.</p>
This text font color is #749C5B.
.myBgColor { background-color: #749C5B; }
<div style="background-color:#749C5B">Inner text</div>
This div background color is #749C5B.
.myBorderColor { border: 1px solid #749C5B; }
<div style="border:3px solid #749C5B">Div</div>
This div border color is #749C5B.
.myOpacity80 { color: #749C5B; opacity: 0.8; }
<p style="color:#749C5B;opacity:0.8;">80%</p>
Text with #749C5B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #749C5B;}
<p style="text-shadow: 3px 3px 1px #749C5B">Text here.</p>
This text has shadow with #749C5B color.
.textShadow {text-shadow: 3px 3px 1px #749C5B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #749C5B, 5px 5px 20px red">Text here.</p>
This text has shadow with #749C5B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#749C5B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#749C5B, Direction=45, Strength=4)">Text</p>
This text has shadow with #749C5B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #749C5B; -webkit-box-shadow: 1px 1px 3px 2px #749C5B; box-shadow: 1px 1px 3px 2px #749C5B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #749C5B; -webkit-box-shadow: 1px 1px 3px 2px #749C5B; box-shadow:1px 1px 3px 2px #749C5B;">
Div content here</div>
This text has color #749C5B on black background.
This text has color #749C5B on white background.
This text has black color on #749C5B background.
This text has white color on #749C5B background.