HEX: #51737B
RGB: (81,115,123)
#51737B contains red, green and blue colors in about the same proportion. Web safe color of #51737B is #666666 (or #666).
#51737B color RGB value is (81,115,123).
RGB: (81,115,123) (32%,45%,48%)
R 81 of 255 = 32%
G 115 of 255 = 45%
B 123 of 255 = 48%
R + G + B ~ 42%. #51737B is middle color (not dark and not light).
R + G + B =
81 + 115 + 123 = 319 (100%)
R 81 of 319 ~ 25.39%
G 115 of 319 ~ 36.05%
B 123 of 319 ~ 38.56%
#51737B color CMYK value is (34,7,0,52).
CMYK: (34,7,0,52) C34M7Y0K52 (34%,7%,0%,52%) (0.34/0.07/0.00/0.52)
51 | 73 | 7B | |
---|---|---|---|
RGB | 81 | 115 | 123 |
HSL | 191° | 20.59% | 40.00% |
HSB/HSV | 191° | 34.15% | 48.24% |
CMYK | 34.15% | 6.50% | 0.00% |
51.76% |
HEX | 51 | 73 | 7B |
Decimal | 81 | 115 | 123 |
Binary | 1010001 | 1110011 | 1111011 |
Octal | 121 | 163 | 173 |
Examples of css and html codes for elements with #51737B color. Also use rgb(81,115,123) instead hex code.
.myTextColor { color: #51737B; }
<p style="color:#51737B">This sample text font color is #51737B.</p>
This text font color is #51737B.
.myBgColor { background-color: #51737B; }
<div style="background-color:#51737B">Inner text</div>
This div background color is #51737B.
.myBorderColor { border: 1px solid #51737B; }
<div style="border:3px solid #51737B">Div</div>
This div border color is #51737B.
.myOpacity80 { color: #51737B; opacity: 0.8; }
<p style="color:#51737B;opacity:0.8;">80%</p>
Text with #51737B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #51737B;}
<p style="text-shadow: 3px 3px 1px #51737B">Text here.</p>
This text has shadow with #51737B color.
.textShadow {text-shadow: 3px 3px 1px #51737B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #51737B, 5px 5px 20px red">Text here.</p>
This text has shadow with #51737B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#51737B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#51737B, Direction=45, Strength=4)">Text</p>
This text has shadow with #51737B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #51737B; -webkit-box-shadow: 1px 1px 3px 2px #51737B; box-shadow: 1px 1px 3px 2px #51737B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #51737B; -webkit-box-shadow: 1px 1px 3px 2px #51737B; box-shadow:1px 1px 3px 2px #51737B;">
Div content here</div>
This text has color #51737B on black background.
This text has color #51737B on white background.
This text has black color on #51737B background.
This text has white color on #51737B background.