HEX: #71636C
RGB: (113,99,108)
#71636C contains red, green and blue colors in about the same proportion. Web safe color of #71636C is #666666 (or #666).
#71636C color RGB value is (113,99,108).
RGB: (113,99,108) (44%,39%,42%)
R 113 of 255 = 44%
G 99 of 255 = 39%
B 108 of 255 = 42%
R + G + B ~ 42%. #71636C is middle color (not dark and not light).
R + G + B =
113 + 99 + 108 = 320 (100%)
R 113 of 320 ~ 35.31%
G 99 of 320 ~ 30.94%
B 108 of 320 ~ 33.75%
#71636C color CMYK value is (0,12,4,56).
CMYK: (0,12,4,56) C0M12Y4K56 (0%,12%,4%,56%) (0.00/0.12/0.04/0.56)
71 | 63 | 6C | |
---|---|---|---|
RGB | 113 | 99 | 108 |
HSL | 321° | 6.60% | 41.57% |
HSB/HSV | 321° | 12.39% | 44.31% |
CMYK | 0.00% | 12.39% | 4.42% |
55.69% |
HEX | 71 | 63 | 6C |
Decimal | 113 | 99 | 108 |
Binary | 1110001 | 1100011 | 1101100 |
Octal | 161 | 143 | 154 |
Examples of css and html codes for elements with #71636C color. Also use rgb(113,99,108) instead hex code.
.myTextColor { color: #71636C; }
<p style="color:#71636C">This sample text font color is #71636C.</p>
This text font color is #71636C.
.myBgColor { background-color: #71636C; }
<div style="background-color:#71636C">Inner text</div>
This div background color is #71636C.
.myBorderColor { border: 1px solid #71636C; }
<div style="border:3px solid #71636C">Div</div>
This div border color is #71636C.
.myOpacity80 { color: #71636C; opacity: 0.8; }
<p style="color:#71636C;opacity:0.8;">80%</p>
Text with #71636C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71636C;}
<p style="text-shadow: 3px 3px 1px #71636C">Text here.</p>
This text has shadow with #71636C color.
.textShadow {text-shadow: 3px 3px 1px #71636C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71636C, 5px 5px 20px red">Text here.</p>
This text has shadow with #71636C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71636C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71636C, Direction=45, Strength=4)">Text</p>
This text has shadow with #71636C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71636C; -webkit-box-shadow: 1px 1px 3px 2px #71636C; box-shadow: 1px 1px 3px 2px #71636C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71636C; -webkit-box-shadow: 1px 1px 3px 2px #71636C; box-shadow:1px 1px 3px 2px #71636C;">
Div content here</div>
This text has color #71636C on black background.
This text has color #71636C on white background.
This text has black color on #71636C background.
This text has white color on #71636C background.