HEX: #71656A
RGB: (113,101,106)
#71656A contains red, green and blue colors in about the same proportion. Web safe color of #71656A is #666666 (or #666).
#71656A color RGB value is (113,101,106).
RGB: (113,101,106) (44%,40%,42%)
R 113 of 255 = 44%
G 101 of 255 = 40%
B 106 of 255 = 42%
R + G + B ~ 42%. #71656A is middle color (not dark and not light).
R + G + B =
113 + 101 + 106 = 320 (100%)
R 113 of 320 ~ 35.31%
G 101 of 320 ~ 31.56%
B 106 of 320 ~ 33.13%
#71656A color CMYK value is (0,11,6,56).
CMYK: (0,11,6,56) C0M11Y6K56 (0%,11%,6%,56%) (0.00/0.11/0.06/0.56)
71 | 65 | 6A | |
---|---|---|---|
RGB | 113 | 101 | 106 |
HSL | 335° | 5.61% | 41.96% |
HSB/HSV | 335° | 10.62% | 44.31% |
CMYK | 0.00% | 10.62% | 6.19% |
55.69% |
HEX | 71 | 65 | 6A |
Decimal | 113 | 101 | 106 |
Binary | 1110001 | 1100101 | 1101010 |
Octal | 161 | 145 | 152 |
Examples of css and html codes for elements with #71656A color. Also use rgb(113,101,106) instead hex code.
.myTextColor { color: #71656A; }
<p style="color:#71656A">This sample text font color is #71656A.</p>
This text font color is #71656A.
.myBgColor { background-color: #71656A; }
<div style="background-color:#71656A">Inner text</div>
This div background color is #71656A.
.myBorderColor { border: 1px solid #71656A; }
<div style="border:3px solid #71656A">Div</div>
This div border color is #71656A.
.myOpacity80 { color: #71656A; opacity: 0.8; }
<p style="color:#71656A;opacity:0.8;">80%</p>
Text with #71656A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71656A;}
<p style="text-shadow: 3px 3px 1px #71656A">Text here.</p>
This text has shadow with #71656A color.
.textShadow {text-shadow: 3px 3px 1px #71656A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71656A, 5px 5px 20px red">Text here.</p>
This text has shadow with #71656A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71656A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71656A, Direction=45, Strength=4)">Text</p>
This text has shadow with #71656A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71656A; -webkit-box-shadow: 1px 1px 3px 2px #71656A; box-shadow: 1px 1px 3px 2px #71656A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71656A; -webkit-box-shadow: 1px 1px 3px 2px #71656A; box-shadow:1px 1px 3px 2px #71656A;">
Div content here</div>
This text has color #71656A on black background.
This text has color #71656A on white background.
This text has black color on #71656A background.
This text has white color on #71656A background.