HEX: #40744B
RGB: (64,116,75)
#40744B contains red, green and blue colors in about the same proportion. Web safe color of #40744B is #336633 (or #363).
#40744B color RGB value is (64,116,75).
RGB: (64,116,75) (25%,45%,29%)
R 64 of 255 = 25%
G 116 of 255 = 45%
B 75 of 255 = 29%
R + G + B ~ 33%. #40744B is quite dark color.
R + G + B =
64 + 116 + 75 = 255 (100%)
R 64 of 255 ~ 25.1%
G 116 of 255 ~ 45.49%
B 75 of 255 ~ 29.41%
#40744B color CMYK value is (45,0,35,55).
CMYK: (45,0,35,55) C45M0Y35K55 (45%,0%,35%,55%) (0.45/0.00/0.35/0.55)
40 | 74 | 4B | |
---|---|---|---|
RGB | 64 | 116 | 75 |
HSL | 133° | 28.89% | 35.29% |
HSB/HSV | 133° | 44.83% | 45.49% |
CMYK | 44.83% | 0.00% | 35.34% |
54.51% |
HEX | 40 | 74 | 4B |
Decimal | 64 | 116 | 75 |
Binary | 1000000 | 1110100 | 1001011 |
Octal | 100 | 164 | 113 |
Examples of css and html codes for elements with #40744B color. Also use rgb(64,116,75) instead hex code.
.myTextColor { color: #40744B; }
<p style="color:#40744B">This sample text font color is #40744B.</p>
This text font color is #40744B.
.myBgColor { background-color: #40744B; }
<div style="background-color:#40744B">Inner text</div>
This div background color is #40744B.
.myBorderColor { border: 1px solid #40744B; }
<div style="border:3px solid #40744B">Div</div>
This div border color is #40744B.
.myOpacity80 { color: #40744B; opacity: 0.8; }
<p style="color:#40744B;opacity:0.8;">80%</p>
Text with #40744B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #40744B;}
<p style="text-shadow: 3px 3px 1px #40744B">Text here.</p>
This text has shadow with #40744B color.
.textShadow {text-shadow: 3px 3px 1px #40744B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #40744B, 5px 5px 20px red">Text here.</p>
This text has shadow with #40744B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#40744B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#40744B, Direction=45, Strength=4)">Text</p>
This text has shadow with #40744B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #40744B; -webkit-box-shadow: 1px 1px 3px 2px #40744B; box-shadow: 1px 1px 3px 2px #40744B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #40744B; -webkit-box-shadow: 1px 1px 3px 2px #40744B; box-shadow:1px 1px 3px 2px #40744B;">
Div content here</div>
This text has color #40744B on black background.
This text has color #40744B on white background.
This text has black color on #40744B background.
This text has white color on #40744B background.