HEX: #499254
RGB: (73,146,84)
#499254 contains mainly green color. Web safe color of #499254 is #339966 (or #396).
#499254 color RGB value is (73,146,84).
RGB: (73,146,84) (29%,57%,33%)
R 73 of 255 = 29%
G 146 of 255 = 57%
B 84 of 255 = 33%
R + G + B ~ 40%. #499254 is middle color (not dark and not light).
R + G + B =
73 + 146 + 84 = 303 (100%)
R 73 of 303 ~ 24.09%
G 146 of 303 ~ 48.18%
B 84 of 303 ~ 27.72%
#499254 color CMYK value is (50,0,42,43).
CMYK: (50,0,42,43) C50M0Y42K43 (50%,0%,42%,43%) (0.50/0.00/0.42/0.43)
49 | 92 | 54 | |
---|---|---|---|
RGB | 73 | 146 | 84 |
HSL | 129° | 33.33% | 42.94% |
HSB/HSV | 129° | 50.00% | 57.25% |
CMYK | 50.00% | 0.00% | 42.47% |
42.75% |
HEX | 49 | 92 | 54 |
Decimal | 73 | 146 | 84 |
Binary | 1001001 | 10010010 | 1010100 |
Octal | 111 | 222 | 124 |
Examples of css and html codes for elements with #499254 color. Also use rgb(73,146,84) instead hex code.
.myTextColor { color: #499254; }
<p style="color:#499254">This sample text font color is #499254.</p>
This text font color is #499254.
.myBgColor { background-color: #499254; }
<div style="background-color:#499254">Inner text</div>
This div background color is #499254.
.myBorderColor { border: 1px solid #499254; }
<div style="border:3px solid #499254">Div</div>
This div border color is #499254.
.myOpacity80 { color: #499254; opacity: 0.8; }
<p style="color:#499254;opacity:0.8;">80%</p>
Text with #499254 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #499254;}
<p style="text-shadow: 3px 3px 1px #499254">Text here.</p>
This text has shadow with #499254 color.
.textShadow {text-shadow: 3px 3px 1px #499254, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #499254, 5px 5px 20px red">Text here.</p>
This text has shadow with #499254 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#499254, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#499254, Direction=45, Strength=4)">Text</p>
This text has shadow with #499254 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #499254; -webkit-box-shadow: 1px 1px 3px 2px #499254; box-shadow: 1px 1px 3px 2px #499254; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #499254; -webkit-box-shadow: 1px 1px 3px 2px #499254; box-shadow:1px 1px 3px 2px #499254;">
Div content here</div>
This text has color #499254 on black background.
This text has color #499254 on white background.
This text has black color on #499254 background.
This text has white color on #499254 background.