HEX: #494E58
RGB: (73,78,88)
#494E58 contains red, green and blue colors in about the same proportion. Web safe color of #494E58 is #336666 (or #366).
#494E58 color RGB value is (73,78,88).
RGB: (73,78,88) (29%,31%,35%)
R 73 of 255 = 29%
G 78 of 255 = 31%
B 88 of 255 = 35%
R + G + B ~ 32%. #494E58 is quite dark color.
R + G + B =
73 + 78 + 88 = 239 (100%)
R 73 of 239 ~ 30.54%
G 78 of 239 ~ 32.64%
B 88 of 239 ~ 36.82%
#494E58 color CMYK value is (17,11,0,65).
CMYK: (17,11,0,65) C17M11Y0K65 (17%,11%,0%,65%) (0.17/0.11/0.00/0.65)
49 | 4E | 58 | |
---|---|---|---|
RGB | 73 | 78 | 88 |
HSL | 220° | 9.32% | 31.57% |
HSB/HSV | 220° | 17.05% | 34.51% |
CMYK | 17.05% | 11.36% | 0.00% |
65.49% |
HEX | 49 | 4E | 58 |
Decimal | 73 | 78 | 88 |
Binary | 1001001 | 1001110 | 1011000 |
Octal | 111 | 116 | 130 |
Examples of css and html codes for elements with #494E58 color. Also use rgb(73,78,88) instead hex code.
.myTextColor { color: #494E58; }
<p style="color:#494E58">This sample text font color is #494E58.</p>
This text font color is #494E58.
.myBgColor { background-color: #494E58; }
<div style="background-color:#494E58">Inner text</div>
This div background color is #494E58.
.myBorderColor { border: 1px solid #494E58; }
<div style="border:3px solid #494E58">Div</div>
This div border color is #494E58.
.myOpacity80 { color: #494E58; opacity: 0.8; }
<p style="color:#494E58;opacity:0.8;">80%</p>
Text with #494E58 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #494E58;}
<p style="text-shadow: 3px 3px 1px #494E58">Text here.</p>
This text has shadow with #494E58 color.
.textShadow {text-shadow: 3px 3px 1px #494E58, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #494E58, 5px 5px 20px red">Text here.</p>
This text has shadow with #494E58 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#494E58, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#494E58, Direction=45, Strength=4)">Text</p>
This text has shadow with #494E58 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #494E58; -webkit-box-shadow: 1px 1px 3px 2px #494E58; box-shadow: 1px 1px 3px 2px #494E58; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #494E58; -webkit-box-shadow: 1px 1px 3px 2px #494E58; box-shadow:1px 1px 3px 2px #494E58;">
Div content here</div>
This text has color #494E58 on black background.
This text has color #494E58 on white background.
This text has black color on #494E58 background.
This text has white color on #494E58 background.