HEX: #749678
RGB: (116,150,120)
#749678 contains red, green and blue colors in about the same proportion. Web safe color of #749678 is #669966 (or #696).
#749678 color RGB value is (116,150,120).
RGB: (116,150,120) (45%,59%,47%)
R 116 of 255 = 45%
G 150 of 255 = 59%
B 120 of 255 = 47%
R + G + B ~ 50%. #749678 is middle color (not dark and not light).
R + G + B =
116 + 150 + 120 = 386 (100%)
R 116 of 386 ~ 30.05%
G 150 of 386 ~ 38.86%
B 120 of 386 ~ 31.09%
#749678 color CMYK value is (23,0,20,41).
CMYK: (23,0,20,41) C23M0Y20K41 (23%,0%,20%,41%) (0.23/0.00/0.20/0.41)
74 | 96 | 78 | |
---|---|---|---|
RGB | 116 | 150 | 120 |
HSL | 127° | 13.93% | 52.16% |
HSB/HSV | 127° | 22.67% | 58.82% |
CMYK | 22.67% | 0.00% | 20.00% |
41.18% |
HEX | 74 | 96 | 78 |
Decimal | 116 | 150 | 120 |
Binary | 1110100 | 10010110 | 1111000 |
Octal | 164 | 226 | 170 |
Examples of css and html codes for elements with #749678 color. Also use rgb(116,150,120) instead hex code.
.myTextColor { color: #749678; }
<p style="color:#749678">This sample text font color is #749678.</p>
This text font color is #749678.
.myBgColor { background-color: #749678; }
<div style="background-color:#749678">Inner text</div>
This div background color is #749678.
.myBorderColor { border: 1px solid #749678; }
<div style="border:3px solid #749678">Div</div>
This div border color is #749678.
.myOpacity80 { color: #749678; opacity: 0.8; }
<p style="color:#749678;opacity:0.8;">80%</p>
Text with #749678 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #749678;}
<p style="text-shadow: 3px 3px 1px #749678">Text here.</p>
This text has shadow with #749678 color.
.textShadow {text-shadow: 3px 3px 1px #749678, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #749678, 5px 5px 20px red">Text here.</p>
This text has shadow with #749678 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#749678, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#749678, Direction=45, Strength=4)">Text</p>
This text has shadow with #749678 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #749678; -webkit-box-shadow: 1px 1px 3px 2px #749678; box-shadow: 1px 1px 3px 2px #749678; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #749678; -webkit-box-shadow: 1px 1px 3px 2px #749678; box-shadow:1px 1px 3px 2px #749678;">
Div content here</div>
This text has color #749678 on black background.
This text has color #749678 on white background.
This text has black color on #749678 background.
This text has white color on #749678 background.