HEX: #72676B
RGB: (114,103,107)
#72676B contains red, green and blue colors in about the same proportion. Web safe color of #72676B is #666666 (or #666).
#72676B color RGB value is (114,103,107).
RGB: (114,103,107) (45%,40%,42%)
R 114 of 255 = 45%
G 103 of 255 = 40%
B 107 of 255 = 42%
R + G + B ~ 42%. #72676B is middle color (not dark and not light).
R + G + B =
114 + 103 + 107 = 324 (100%)
R 114 of 324 ~ 35.19%
G 103 of 324 ~ 31.79%
B 107 of 324 ~ 33.02%
#72676B color CMYK value is (0,10,6,55).
CMYK: (0,10,6,55) C0M10Y6K55 (0%,10%,6%,55%) (0.00/0.10/0.06/0.55)
72 | 67 | 6B | |
---|---|---|---|
RGB | 114 | 103 | 107 |
HSL | 338° | 5.07% | 42.55% |
HSB/HSV | 338° | 9.65% | 44.71% |
CMYK | 0.00% | 9.65% | 6.14% |
55.29% |
HEX | 72 | 67 | 6B |
Decimal | 114 | 103 | 107 |
Binary | 1110010 | 1100111 | 1101011 |
Octal | 162 | 147 | 153 |
Examples of css and html codes for elements with #72676B color. Also use rgb(114,103,107) instead hex code.
.myTextColor { color: #72676B; }
<p style="color:#72676B">This sample text font color is #72676B.</p>
This text font color is #72676B.
.myBgColor { background-color: #72676B; }
<div style="background-color:#72676B">Inner text</div>
This div background color is #72676B.
.myBorderColor { border: 1px solid #72676B; }
<div style="border:3px solid #72676B">Div</div>
This div border color is #72676B.
.myOpacity80 { color: #72676B; opacity: 0.8; }
<p style="color:#72676B;opacity:0.8;">80%</p>
Text with #72676B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72676B;}
<p style="text-shadow: 3px 3px 1px #72676B">Text here.</p>
This text has shadow with #72676B color.
.textShadow {text-shadow: 3px 3px 1px #72676B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72676B, 5px 5px 20px red">Text here.</p>
This text has shadow with #72676B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72676B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72676B, Direction=45, Strength=4)">Text</p>
This text has shadow with #72676B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72676B; -webkit-box-shadow: 1px 1px 3px 2px #72676B; box-shadow: 1px 1px 3px 2px #72676B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72676B; -webkit-box-shadow: 1px 1px 3px 2px #72676B; box-shadow:1px 1px 3px 2px #72676B;">
Div content here</div>
This text has color #72676B on black background.
This text has color #72676B on white background.
This text has black color on #72676B background.
This text has white color on #72676B background.