HEX: #72747B
RGB: (114,116,123)
#72747B contains red, green and blue colors in about the same proportion. Web safe color of #72747B is #666666 (or #666).
#72747B color RGB value is (114,116,123).
RGB: (114,116,123) (45%,45%,48%)
R 114 of 255 = 45%
G 116 of 255 = 45%
B 123 of 255 = 48%
R + G + B ~ 46%. #72747B is middle color (not dark and not light).
R + G + B =
114 + 116 + 123 = 353 (100%)
R 114 of 353 ~ 32.29%
G 116 of 353 ~ 32.86%
B 123 of 353 ~ 34.84%
#72747B color CMYK value is (7,6,0,52).
CMYK: (7,6,0,52) C7M6Y0K52 (7%,6%,0%,52%) (0.07/0.06/0.00/0.52)
72 | 74 | 7B | |
---|---|---|---|
RGB | 114 | 116 | 123 |
HSL | 227° | 3.80% | 46.47% |
HSB/HSV | 227° | 7.32% | 48.24% |
CMYK | 7.32% | 5.69% | 0.00% |
51.76% |
HEX | 72 | 74 | 7B |
Decimal | 114 | 116 | 123 |
Binary | 1110010 | 1110100 | 1111011 |
Octal | 162 | 164 | 173 |
Examples of css and html codes for elements with #72747B color. Also use rgb(114,116,123) instead hex code.
.myTextColor { color: #72747B; }
<p style="color:#72747B">This sample text font color is #72747B.</p>
This text font color is #72747B.
.myBgColor { background-color: #72747B; }
<div style="background-color:#72747B">Inner text</div>
This div background color is #72747B.
.myBorderColor { border: 1px solid #72747B; }
<div style="border:3px solid #72747B">Div</div>
This div border color is #72747B.
.myOpacity80 { color: #72747B; opacity: 0.8; }
<p style="color:#72747B;opacity:0.8;">80%</p>
Text with #72747B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72747B;}
<p style="text-shadow: 3px 3px 1px #72747B">Text here.</p>
This text has shadow with #72747B color.
.textShadow {text-shadow: 3px 3px 1px #72747B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72747B, 5px 5px 20px red">Text here.</p>
This text has shadow with #72747B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72747B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72747B, Direction=45, Strength=4)">Text</p>
This text has shadow with #72747B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72747B; -webkit-box-shadow: 1px 1px 3px 2px #72747B; box-shadow: 1px 1px 3px 2px #72747B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72747B; -webkit-box-shadow: 1px 1px 3px 2px #72747B; box-shadow:1px 1px 3px 2px #72747B;">
Div content here</div>
This text has color #72747B on black background.
This text has color #72747B on white background.
This text has black color on #72747B background.
This text has white color on #72747B background.