HEX: #498C60
RGB: (73,140,96)
#498C60 contains mainly green and blue colors. Web safe color of #498C60 is #339966 (or #396).
#498C60 color RGB value is (73,140,96).
RGB: (73,140,96) (29%,55%,38%)
R 73 of 255 = 29%
G 140 of 255 = 55%
B 96 of 255 = 38%
R + G + B ~ 41%. #498C60 is middle color (not dark and not light).
R + G + B =
73 + 140 + 96 = 309 (100%)
R 73 of 309 ~ 23.62%
G 140 of 309 ~ 45.31%
B 96 of 309 ~ 31.07%
#498C60 color CMYK value is (48,0,31,45).
CMYK: (48,0,31,45) C48M0Y31K45 (48%,0%,31%,45%) (0.48/0.00/0.31/0.45)
49 | 8C | 60 | |
---|---|---|---|
RGB | 73 | 140 | 96 |
HSL | 141° | 31.46% | 41.76% |
HSB/HSV | 141° | 47.86% | 54.90% |
CMYK | 47.86% | 0.00% | 31.43% |
45.10% |
HEX | 49 | 8C | 60 |
Decimal | 73 | 140 | 96 |
Binary | 1001001 | 10001100 | 1100000 |
Octal | 111 | 214 | 140 |
Examples of css and html codes for elements with #498C60 color. Also use rgb(73,140,96) instead hex code.
.myTextColor { color: #498C60; }
<p style="color:#498C60">This sample text font color is #498C60.</p>
This text font color is #498C60.
.myBgColor { background-color: #498C60; }
<div style="background-color:#498C60">Inner text</div>
This div background color is #498C60.
.myBorderColor { border: 1px solid #498C60; }
<div style="border:3px solid #498C60">Div</div>
This div border color is #498C60.
.myOpacity80 { color: #498C60; opacity: 0.8; }
<p style="color:#498C60;opacity:0.8;">80%</p>
Text with #498C60 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #498C60;}
<p style="text-shadow: 3px 3px 1px #498C60">Text here.</p>
This text has shadow with #498C60 color.
.textShadow {text-shadow: 3px 3px 1px #498C60, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #498C60, 5px 5px 20px red">Text here.</p>
This text has shadow with #498C60 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#498C60, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#498C60, Direction=45, Strength=4)">Text</p>
This text has shadow with #498C60 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #498C60; -webkit-box-shadow: 1px 1px 3px 2px #498C60; box-shadow: 1px 1px 3px 2px #498C60; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #498C60; -webkit-box-shadow: 1px 1px 3px 2px #498C60; box-shadow:1px 1px 3px 2px #498C60;">
Div content here</div>
This text has color #498C60 on black background.
This text has color #498C60 on white background.
This text has black color on #498C60 background.
This text has white color on #498C60 background.