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