HEX: #255473
RGB: (37,84,115)
#255473 contains mainly green and blue colors. Web safe color of #255473 is #336666 (or #366).
#255473 color RGB value is (37,84,115).
RGB: (37,84,115) (15%,33%,45%)
R 37 of 255 = 15%
G 84 of 255 = 33%
B 115 of 255 = 45%
R + G + B ~ 31%. #255473 is quite dark color.
R + G + B =
37 + 84 + 115 = 236 (100%)
R 37 of 236 ~ 15.68%
G 84 of 236 ~ 35.59%
B 115 of 236 ~ 48.73%
#255473 color CMYK value is (68,27,0,55).
CMYK: (68,27,0,55) C68M27Y0K55 (68%,27%,0%,55%) (0.68/0.27/0.00/0.55)
25 | 54 | 73 | |
---|---|---|---|
RGB | 37 | 84 | 115 |
HSL | 204° | 51.32% | 29.80% |
HSB/HSV | 204° | 67.83% | 45.10% |
CMYK | 67.83% | 26.96% | 0.00% |
54.90% |
HEX | 25 | 54 | 73 |
Decimal | 37 | 84 | 115 |
Binary | 100101 | 1010100 | 1110011 |
Octal | 45 | 124 | 163 |
Examples of css and html codes for elements with #255473 color. Also use rgb(37,84,115) instead hex code.
.myTextColor { color: #255473; }
<p style="color:#255473">This sample text font color is #255473.</p>
This text font color is #255473.
.myBgColor { background-color: #255473; }
<div style="background-color:#255473">Inner text</div>
This div background color is #255473.
.myBorderColor { border: 1px solid #255473; }
<div style="border:3px solid #255473">Div</div>
This div border color is #255473.
.myOpacity80 { color: #255473; opacity: 0.8; }
<p style="color:#255473;opacity:0.8;">80%</p>
Text with #255473 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #255473;}
<p style="text-shadow: 3px 3px 1px #255473">Text here.</p>
This text has shadow with #255473 color.
.textShadow {text-shadow: 3px 3px 1px #255473, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #255473, 5px 5px 20px red">Text here.</p>
This text has shadow with #255473 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#255473, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#255473, Direction=45, Strength=4)">Text</p>
This text has shadow with #255473 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #255473; -webkit-box-shadow: 1px 1px 3px 2px #255473; box-shadow: 1px 1px 3px 2px #255473; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #255473; -webkit-box-shadow: 1px 1px 3px 2px #255473; box-shadow:1px 1px 3px 2px #255473;">
Div content here</div>
This text has color #255473 on black background.
This text has color #255473 on white background.
This text has black color on #255473 background.
This text has white color on #255473 background.