HEX: #499874
RGB: (73,152,116)
#499874 contains mainly green and blue colors. Web safe color of #499874 is #339966 (or #396).
#499874 color RGB value is (73,152,116).
RGB: (73,152,116) (29%,60%,45%)
R 73 of 255 = 29%
G 152 of 255 = 60%
B 116 of 255 = 45%
R + G + B ~ 45%. #499874 is middle color (not dark and not light).
R + G + B =
73 + 152 + 116 = 341 (100%)
R 73 of 341 ~ 21.41%
G 152 of 341 ~ 44.57%
B 116 of 341 ~ 34.02%
#499874 color CMYK value is (52,0,24,40).
CMYK: (52,0,24,40) C52M0Y24K40 (52%,0%,24%,40%) (0.52/0.00/0.24/0.40)
49 | 98 | 74 | |
---|---|---|---|
RGB | 73 | 152 | 116 |
HSL | 153° | 35.11% | 44.12% |
HSB/HSV | 153° | 51.97% | 59.61% |
CMYK | 51.97% | 0.00% | 23.68% |
40.39% |
HEX | 49 | 98 | 74 |
Decimal | 73 | 152 | 116 |
Binary | 1001001 | 10011000 | 1110100 |
Octal | 111 | 230 | 164 |
Examples of css and html codes for elements with #499874 color. Also use rgb(73,152,116) instead hex code.
.myTextColor { color: #499874; }
<p style="color:#499874">This sample text font color is #499874.</p>
This text font color is #499874.
.myBgColor { background-color: #499874; }
<div style="background-color:#499874">Inner text</div>
This div background color is #499874.
.myBorderColor { border: 1px solid #499874; }
<div style="border:3px solid #499874">Div</div>
This div border color is #499874.
.myOpacity80 { color: #499874; opacity: 0.8; }
<p style="color:#499874;opacity:0.8;">80%</p>
Text with #499874 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #499874;}
<p style="text-shadow: 3px 3px 1px #499874">Text here.</p>
This text has shadow with #499874 color.
.textShadow {text-shadow: 3px 3px 1px #499874, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #499874, 5px 5px 20px red">Text here.</p>
This text has shadow with #499874 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#499874, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#499874, Direction=45, Strength=4)">Text</p>
This text has shadow with #499874 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #499874; -webkit-box-shadow: 1px 1px 3px 2px #499874; box-shadow: 1px 1px 3px 2px #499874; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #499874; -webkit-box-shadow: 1px 1px 3px 2px #499874; box-shadow:1px 1px 3px 2px #499874;">
Div content here</div>
This text has color #499874 on black background.
This text has color #499874 on white background.
This text has black color on #499874 background.
This text has white color on #499874 background.