HEX: #495E7C
RGB: (73,94,124)
#495E7C contains red, green and blue colors in about the same proportion. Web safe color of #495E7C is #336666 (or #366).
#495E7C color RGB value is (73,94,124).
RGB: (73,94,124) (29%,37%,49%)
R 73 of 255 = 29%
G 94 of 255 = 37%
B 124 of 255 = 49%
R + G + B ~ 38%. #495E7C is quite dark color.
R + G + B =
73 + 94 + 124 = 291 (100%)
R 73 of 291 ~ 25.09%
G 94 of 291 ~ 32.3%
B 124 of 291 ~ 42.61%
#495E7C color CMYK value is (41,24,0,51).
CMYK: (41,24,0,51) C41M24Y0K51 (41%,24%,0%,51%) (0.41/0.24/0.00/0.51)
49 | 5E | 7C | |
---|---|---|---|
RGB | 73 | 94 | 124 |
HSL | 215° | 25.89% | 38.63% |
HSB/HSV | 215° | 41.13% | 48.63% |
CMYK | 41.13% | 24.19% | 0.00% |
51.37% |
HEX | 49 | 5E | 7C |
Decimal | 73 | 94 | 124 |
Binary | 1001001 | 1011110 | 1111100 |
Octal | 111 | 136 | 174 |
Examples of css and html codes for elements with #495E7C color. Also use rgb(73,94,124) instead hex code.
.myTextColor { color: #495E7C; }
<p style="color:#495E7C">This sample text font color is #495E7C.</p>
This text font color is #495E7C.
.myBgColor { background-color: #495E7C; }
<div style="background-color:#495E7C">Inner text</div>
This div background color is #495E7C.
.myBorderColor { border: 1px solid #495E7C; }
<div style="border:3px solid #495E7C">Div</div>
This div border color is #495E7C.
.myOpacity80 { color: #495E7C; opacity: 0.8; }
<p style="color:#495E7C;opacity:0.8;">80%</p>
Text with #495E7C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #495E7C;}
<p style="text-shadow: 3px 3px 1px #495E7C">Text here.</p>
This text has shadow with #495E7C color.
.textShadow {text-shadow: 3px 3px 1px #495E7C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #495E7C, 5px 5px 20px red">Text here.</p>
This text has shadow with #495E7C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#495E7C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#495E7C, Direction=45, Strength=4)">Text</p>
This text has shadow with #495E7C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #495E7C; -webkit-box-shadow: 1px 1px 3px 2px #495E7C; box-shadow: 1px 1px 3px 2px #495E7C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #495E7C; -webkit-box-shadow: 1px 1px 3px 2px #495E7C; box-shadow:1px 1px 3px 2px #495E7C;">
Div content here</div>
This text has color #495E7C on black background.
This text has color #495E7C on white background.
This text has black color on #495E7C background.
This text has white color on #495E7C background.