HEX: #498ECC
RGB: (73,142,204)
#498ECC contains mainly blue color. Web safe color of #498ECC is #3399CC (or #39C).
#498ECC color RGB value is (73,142,204).
RGB: (73,142,204) (29%,56%,80%)
R 73 of 255 = 29%
G 142 of 255 = 56%
B 204 of 255 = 80%
R + G + B ~ 55%. #498ECC is middle color (not dark and not light).
R + G + B =
73 + 142 + 204 = 419 (100%)
R 73 of 419 ~ 17.42%
G 142 of 419 ~ 33.89%
B 204 of 419 ~ 48.69%
#498ECC color CMYK value is (64,30,0,20).
CMYK: (64,30,0,20) C64M30Y0K20 (64%,30%,0%,20%) (0.64/0.30/0.00/0.20)
49 | 8E | CC | |
---|---|---|---|
RGB | 73 | 142 | 204 |
HSL | 208° | 56.22% | 54.31% |
HSB/HSV | 208° | 64.22% | 80.00% |
CMYK | 64.22% | 30.39% | 0.00% |
20.00% |
HEX | 49 | 8E | CC |
Decimal | 73 | 142 | 204 |
Binary | 1001001 | 10001110 | 11001100 |
Octal | 111 | 216 | 314 |
Examples of css and html codes for elements with #498ECC color. Also use rgb(73,142,204) instead hex code.
.myTextColor { color: #498ECC; }
<p style="color:#498ECC">This sample text font color is #498ECC.</p>
This text font color is #498ECC.
.myBgColor { background-color: #498ECC; }
<div style="background-color:#498ECC">Inner text</div>
This div background color is #498ECC.
.myBorderColor { border: 1px solid #498ECC; }
<div style="border:3px solid #498ECC">Div</div>
This div border color is #498ECC.
.myOpacity80 { color: #498ECC; opacity: 0.8; }
<p style="color:#498ECC;opacity:0.8;">80%</p>
Text with #498ECC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #498ECC;}
<p style="text-shadow: 3px 3px 1px #498ECC">Text here.</p>
This text has shadow with #498ECC color.
.textShadow {text-shadow: 3px 3px 1px #498ECC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #498ECC, 5px 5px 20px red">Text here.</p>
This text has shadow with #498ECC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#498ECC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#498ECC, Direction=45, Strength=4)">Text</p>
This text has shadow with #498ECC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #498ECC; -webkit-box-shadow: 1px 1px 3px 2px #498ECC; box-shadow: 1px 1px 3px 2px #498ECC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #498ECC; -webkit-box-shadow: 1px 1px 3px 2px #498ECC; box-shadow:1px 1px 3px 2px #498ECC;">
Div content here</div>
This text has color #498ECC on black background.
This text has color #498ECC on white background.
This text has black color on #498ECC background.
This text has white color on #498ECC background.