HEX: #748750
RGB: (116,135,80)
#748750 contains red, green and blue colors in about the same proportion. Web safe color of #748750 is #669966 (or #696).
#748750 color RGB value is (116,135,80).
RGB: (116,135,80) (45%,53%,31%)
R 116 of 255 = 45%
G 135 of 255 = 53%
B 80 of 255 = 31%
R + G + B ~ 43%. #748750 is middle color (not dark and not light).
R + G + B =
116 + 135 + 80 = 331 (100%)
R 116 of 331 ~ 35.05%
G 135 of 331 ~ 40.79%
B 80 of 331 ~ 24.17%
#748750 color CMYK value is (14,0,41,47).
CMYK: (14,0,41,47) C14M0Y41K47 (14%,0%,41%,47%) (0.14/0.00/0.41/0.47)
74 | 87 | 50 | |
---|---|---|---|
RGB | 116 | 135 | 80 |
HSL | 81° | 25.58% | 42.16% |
HSB/HSV | 81° | 40.74% | 52.94% |
CMYK | 14.07% | 0.00% | 40.74% |
47.06% |
HEX | 74 | 87 | 50 |
Decimal | 116 | 135 | 80 |
Binary | 1110100 | 10000111 | 1010000 |
Octal | 164 | 207 | 120 |
Examples of css and html codes for elements with #748750 color. Also use rgb(116,135,80) instead hex code.
.myTextColor { color: #748750; }
<p style="color:#748750">This sample text font color is #748750.</p>
This text font color is #748750.
.myBgColor { background-color: #748750; }
<div style="background-color:#748750">Inner text</div>
This div background color is #748750.
.myBorderColor { border: 1px solid #748750; }
<div style="border:3px solid #748750">Div</div>
This div border color is #748750.
.myOpacity80 { color: #748750; opacity: 0.8; }
<p style="color:#748750;opacity:0.8;">80%</p>
Text with #748750 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #748750;}
<p style="text-shadow: 3px 3px 1px #748750">Text here.</p>
This text has shadow with #748750 color.
.textShadow {text-shadow: 3px 3px 1px #748750, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #748750, 5px 5px 20px red">Text here.</p>
This text has shadow with #748750 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#748750, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#748750, Direction=45, Strength=4)">Text</p>
This text has shadow with #748750 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #748750; -webkit-box-shadow: 1px 1px 3px 2px #748750; box-shadow: 1px 1px 3px 2px #748750; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #748750; -webkit-box-shadow: 1px 1px 3px 2px #748750; box-shadow:1px 1px 3px 2px #748750;">
Div content here</div>
This text has color #748750 on black background.
This text has color #748750 on white background.
This text has black color on #748750 background.
This text has white color on #748750 background.