HEX: #495C8D
RGB: (73,92,141)
#495C8D contains mainly green and blue colors. Web safe color of #495C8D is #336699 (or #369).
#495C8D color RGB value is (73,92,141).
RGB: (73,92,141) (29%,36%,55%)
R 73 of 255 = 29%
G 92 of 255 = 36%
B 141 of 255 = 55%
R + G + B ~ 40%. #495C8D is middle color (not dark and not light).
R + G + B =
73 + 92 + 141 = 306 (100%)
R 73 of 306 ~ 23.86%
G 92 of 306 ~ 30.07%
B 141 of 306 ~ 46.08%
#495C8D color CMYK value is (48,35,0,45).
CMYK: (48,35,0,45) C48M35Y0K45 (48%,35%,0%,45%) (0.48/0.35/0.00/0.45)
49 | 5C | 8D | |
---|---|---|---|
RGB | 73 | 92 | 141 |
HSL | 223° | 31.78% | 41.96% |
HSB/HSV | 223° | 48.23% | 55.29% |
CMYK | 48.23% | 34.75% | 0.00% |
44.71% |
HEX | 49 | 5C | 8D |
Decimal | 73 | 92 | 141 |
Binary | 1001001 | 1011100 | 10001101 |
Octal | 111 | 134 | 215 |
Examples of css and html codes for elements with #495C8D color. Also use rgb(73,92,141) instead hex code.
.myTextColor { color: #495C8D; }
<p style="color:#495C8D">This sample text font color is #495C8D.</p>
This text font color is #495C8D.
.myBgColor { background-color: #495C8D; }
<div style="background-color:#495C8D">Inner text</div>
This div background color is #495C8D.
.myBorderColor { border: 1px solid #495C8D; }
<div style="border:3px solid #495C8D">Div</div>
This div border color is #495C8D.
.myOpacity80 { color: #495C8D; opacity: 0.8; }
<p style="color:#495C8D;opacity:0.8;">80%</p>
Text with #495C8D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #495C8D;}
<p style="text-shadow: 3px 3px 1px #495C8D">Text here.</p>
This text has shadow with #495C8D color.
.textShadow {text-shadow: 3px 3px 1px #495C8D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #495C8D, 5px 5px 20px red">Text here.</p>
This text has shadow with #495C8D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#495C8D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#495C8D, Direction=45, Strength=4)">Text</p>
This text has shadow with #495C8D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #495C8D; -webkit-box-shadow: 1px 1px 3px 2px #495C8D; box-shadow: 1px 1px 3px 2px #495C8D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #495C8D; -webkit-box-shadow: 1px 1px 3px 2px #495C8D; box-shadow:1px 1px 3px 2px #495C8D;">
Div content here</div>
This text has color #495C8D on black background.
This text has color #495C8D on white background.
This text has black color on #495C8D background.
This text has white color on #495C8D background.