HEX: #407E89
RGB: (64,126,137)
#407E89 contains mainly green and blue colors. Web safe color of #407E89 is #336699 (or #369).
#407E89 color RGB value is (64,126,137).
RGB: (64,126,137) (25%,49%,54%)
R 64 of 255 = 25%
G 126 of 255 = 49%
B 137 of 255 = 54%
R + G + B ~ 43%. #407E89 is middle color (not dark and not light).
R + G + B =
64 + 126 + 137 = 327 (100%)
R 64 of 327 ~ 19.57%
G 126 of 327 ~ 38.53%
B 137 of 327 ~ 41.9%
#407E89 color CMYK value is (53,8,0,46).
CMYK: (53,8,0,46) C53M8Y0K46 (53%,8%,0%,46%) (0.53/0.08/0.00/0.46)
40 | 7E | 89 | |
---|---|---|---|
RGB | 64 | 126 | 137 |
HSL | 189° | 36.32% | 39.41% |
HSB/HSV | 189° | 53.28% | 53.73% |
CMYK | 53.28% | 8.03% | 0.00% |
46.27% |
HEX | 40 | 7E | 89 |
Decimal | 64 | 126 | 137 |
Binary | 1000000 | 1111110 | 10001001 |
Octal | 100 | 176 | 211 |
Examples of css and html codes for elements with #407E89 color. Also use rgb(64,126,137) instead hex code.
.myTextColor { color: #407E89; }
<p style="color:#407E89">This sample text font color is #407E89.</p>
This text font color is #407E89.
.myBgColor { background-color: #407E89; }
<div style="background-color:#407E89">Inner text</div>
This div background color is #407E89.
.myBorderColor { border: 1px solid #407E89; }
<div style="border:3px solid #407E89">Div</div>
This div border color is #407E89.
.myOpacity80 { color: #407E89; opacity: 0.8; }
<p style="color:#407E89;opacity:0.8;">80%</p>
Text with #407E89 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #407E89;}
<p style="text-shadow: 3px 3px 1px #407E89">Text here.</p>
This text has shadow with #407E89 color.
.textShadow {text-shadow: 3px 3px 1px #407E89, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #407E89, 5px 5px 20px red">Text here.</p>
This text has shadow with #407E89 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#407E89, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#407E89, Direction=45, Strength=4)">Text</p>
This text has shadow with #407E89 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #407E89; -webkit-box-shadow: 1px 1px 3px 2px #407E89; box-shadow: 1px 1px 3px 2px #407E89; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #407E89; -webkit-box-shadow: 1px 1px 3px 2px #407E89; box-shadow:1px 1px 3px 2px #407E89;">
Div content here</div>
This text has color #407E89 on black background.
This text has color #407E89 on white background.
This text has black color on #407E89 background.
This text has white color on #407E89 background.