HEX: #64737D
RGB: (100,115,125)
#64737D contains red, green and blue colors in about the same proportion. Web safe color of #64737D is #666666 (or #666).
#64737D color RGB value is (100,115,125).
RGB: (100,115,125) (39%,45%,49%)
R 100 of 255 = 39%
G 115 of 255 = 45%
B 125 of 255 = 49%
R + G + B ~ 44%. #64737D is middle color (not dark and not light).
R + G + B =
100 + 115 + 125 = 340 (100%)
R 100 of 340 ~ 29.41%
G 115 of 340 ~ 33.82%
B 125 of 340 ~ 36.76%
#64737D color CMYK value is (20,8,0,51).
CMYK: (20,8,0,51) C20M8Y0K51 (20%,8%,0%,51%) (0.20/0.08/0.00/0.51)
64 | 73 | 7D | |
---|---|---|---|
RGB | 100 | 115 | 125 |
HSL | 204° | 11.11% | 44.12% |
HSB/HSV | 204° | 20.00% | 49.02% |
CMYK | 20.00% | 8.00% | 0.00% |
50.98% |
HEX | 64 | 73 | 7D |
Decimal | 100 | 115 | 125 |
Binary | 1100100 | 1110011 | 1111101 |
Octal | 144 | 163 | 175 |
Examples of css and html codes for elements with #64737D color. Also use rgb(100,115,125) instead hex code.
.myTextColor { color: #64737D; }
<p style="color:#64737D">This sample text font color is #64737D.</p>
This text font color is #64737D.
.myBgColor { background-color: #64737D; }
<div style="background-color:#64737D">Inner text</div>
This div background color is #64737D.
.myBorderColor { border: 1px solid #64737D; }
<div style="border:3px solid #64737D">Div</div>
This div border color is #64737D.
.myOpacity80 { color: #64737D; opacity: 0.8; }
<p style="color:#64737D;opacity:0.8;">80%</p>
Text with #64737D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #64737D;}
<p style="text-shadow: 3px 3px 1px #64737D">Text here.</p>
This text has shadow with #64737D color.
.textShadow {text-shadow: 3px 3px 1px #64737D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #64737D, 5px 5px 20px red">Text here.</p>
This text has shadow with #64737D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#64737D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#64737D, Direction=45, Strength=4)">Text</p>
This text has shadow with #64737D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #64737D; -webkit-box-shadow: 1px 1px 3px 2px #64737D; box-shadow: 1px 1px 3px 2px #64737D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #64737D; -webkit-box-shadow: 1px 1px 3px 2px #64737D; box-shadow:1px 1px 3px 2px #64737D;">
Div content here</div>
This text has color #64737D on black background.
This text has color #64737D on white background.
This text has black color on #64737D background.
This text has white color on #64737D background.