HEX: #498C9A
RGB: (73,140,154)
#498C9A contains mainly green and blue colors. Web safe color of #498C9A is #339999 (or #399).
#498C9A color RGB value is (73,140,154).
RGB: (73,140,154) (29%,55%,60%)
R 73 of 255 = 29%
G 140 of 255 = 55%
B 154 of 255 = 60%
R + G + B ~ 48%. #498C9A is middle color (not dark and not light).
R + G + B =
73 + 140 + 154 = 367 (100%)
R 73 of 367 ~ 19.89%
G 140 of 367 ~ 38.15%
B 154 of 367 ~ 41.96%
#498C9A color CMYK value is (53,9,0,40).
CMYK: (53,9,0,40) C53M9Y0K40 (53%,9%,0%,40%) (0.53/0.09/0.00/0.40)
49 | 8C | 9A | |
---|---|---|---|
RGB | 73 | 140 | 154 |
HSL | 190° | 35.68% | 44.51% |
HSB/HSV | 190° | 52.60% | 60.39% |
CMYK | 52.60% | 9.09% | 0.00% |
39.61% |
HEX | 49 | 8C | 9A |
Decimal | 73 | 140 | 154 |
Binary | 1001001 | 10001100 | 10011010 |
Octal | 111 | 214 | 232 |
Examples of css and html codes for elements with #498C9A color. Also use rgb(73,140,154) instead hex code.
.myTextColor { color: #498C9A; }
<p style="color:#498C9A">This sample text font color is #498C9A.</p>
This text font color is #498C9A.
.myBgColor { background-color: #498C9A; }
<div style="background-color:#498C9A">Inner text</div>
This div background color is #498C9A.
.myBorderColor { border: 1px solid #498C9A; }
<div style="border:3px solid #498C9A">Div</div>
This div border color is #498C9A.
.myOpacity80 { color: #498C9A; opacity: 0.8; }
<p style="color:#498C9A;opacity:0.8;">80%</p>
Text with #498C9A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #498C9A;}
<p style="text-shadow: 3px 3px 1px #498C9A">Text here.</p>
This text has shadow with #498C9A color.
.textShadow {text-shadow: 3px 3px 1px #498C9A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #498C9A, 5px 5px 20px red">Text here.</p>
This text has shadow with #498C9A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#498C9A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#498C9A, Direction=45, Strength=4)">Text</p>
This text has shadow with #498C9A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #498C9A; -webkit-box-shadow: 1px 1px 3px 2px #498C9A; box-shadow: 1px 1px 3px 2px #498C9A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #498C9A; -webkit-box-shadow: 1px 1px 3px 2px #498C9A; box-shadow:1px 1px 3px 2px #498C9A;">
Div content here</div>
This text has color #498C9A on black background.
This text has color #498C9A on white background.
This text has black color on #498C9A background.
This text has white color on #498C9A background.