HEX: #407C73
RGB: (64,124,115)
#407C73 contains mainly green and blue colors. Web safe color of #407C73 is #336666 (or #366).
#407C73 color RGB value is (64,124,115).
RGB: (64,124,115) (25%,49%,45%)
R 64 of 255 = 25%
G 124 of 255 = 49%
B 115 of 255 = 45%
R + G + B ~ 40%. #407C73 is middle color (not dark and not light).
R + G + B =
64 + 124 + 115 = 303 (100%)
R 64 of 303 ~ 21.12%
G 124 of 303 ~ 40.92%
B 115 of 303 ~ 37.95%
#407C73 color CMYK value is (48,0,7,51).
CMYK: (48,0,7,51) C48M0Y7K51 (48%,0%,7%,51%) (0.48/0.00/0.07/0.51)
40 | 7C | 73 | |
---|---|---|---|
RGB | 64 | 124 | 115 |
HSL | 171° | 31.91% | 36.86% |
HSB/HSV | 171° | 48.39% | 48.63% |
CMYK | 48.39% | 0.00% | 7.26% |
51.37% |
HEX | 40 | 7C | 73 |
Decimal | 64 | 124 | 115 |
Binary | 1000000 | 1111100 | 1110011 |
Octal | 100 | 174 | 163 |
Examples of css and html codes for elements with #407C73 color. Also use rgb(64,124,115) instead hex code.
.myTextColor { color: #407C73; }
<p style="color:#407C73">This sample text font color is #407C73.</p>
This text font color is #407C73.
.myBgColor { background-color: #407C73; }
<div style="background-color:#407C73">Inner text</div>
This div background color is #407C73.
.myBorderColor { border: 1px solid #407C73; }
<div style="border:3px solid #407C73">Div</div>
This div border color is #407C73.
.myOpacity80 { color: #407C73; opacity: 0.8; }
<p style="color:#407C73;opacity:0.8;">80%</p>
Text with #407C73 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #407C73;}
<p style="text-shadow: 3px 3px 1px #407C73">Text here.</p>
This text has shadow with #407C73 color.
.textShadow {text-shadow: 3px 3px 1px #407C73, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #407C73, 5px 5px 20px red">Text here.</p>
This text has shadow with #407C73 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#407C73, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#407C73, Direction=45, Strength=4)">Text</p>
This text has shadow with #407C73 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #407C73; -webkit-box-shadow: 1px 1px 3px 2px #407C73; box-shadow: 1px 1px 3px 2px #407C73; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #407C73; -webkit-box-shadow: 1px 1px 3px 2px #407C73; box-shadow:1px 1px 3px 2px #407C73;">
Div content here</div>
This text has color #407C73 on black background.
This text has color #407C73 on white background.
This text has black color on #407C73 background.
This text has white color on #407C73 background.