HEX: #67476B
RGB: (103,71,107)
#67476B contains red, green and blue colors in about the same proportion. Web safe color of #67476B is #663366 (or #636).
#67476B color RGB value is (103,71,107).
RGB: (103,71,107) (40%,28%,42%)
R 103 of 255 = 40%
G 71 of 255 = 28%
B 107 of 255 = 42%
R + G + B ~ 37%. #67476B is quite dark color.
R + G + B =
103 + 71 + 107 = 281 (100%)
R 103 of 281 ~ 36.65%
G 71 of 281 ~ 25.27%
B 107 of 281 ~ 38.08%
#67476B color CMYK value is (4,34,0,58).
CMYK: (4,34,0,58) C4M34Y0K58 (4%,34%,0%,58%) (0.04/0.34/0.00/0.58)
67 | 47 | 6B | |
---|---|---|---|
RGB | 103 | 71 | 107 |
HSL | 293° | 20.22% | 34.90% |
HSB/HSV | 293° | 33.64% | 41.96% |
CMYK | 3.74% | 33.64% | 0.00% |
58.04% |
HEX | 67 | 47 | 6B |
Decimal | 103 | 71 | 107 |
Binary | 1100111 | 1000111 | 1101011 |
Octal | 147 | 107 | 153 |
Examples of css and html codes for elements with #67476B color. Also use rgb(103,71,107) instead hex code.
.myTextColor { color: #67476B; }
<p style="color:#67476B">This sample text font color is #67476B.</p>
This text font color is #67476B.
.myBgColor { background-color: #67476B; }
<div style="background-color:#67476B">Inner text</div>
This div background color is #67476B.
.myBorderColor { border: 1px solid #67476B; }
<div style="border:3px solid #67476B">Div</div>
This div border color is #67476B.
.myOpacity80 { color: #67476B; opacity: 0.8; }
<p style="color:#67476B;opacity:0.8;">80%</p>
Text with #67476B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #67476B;}
<p style="text-shadow: 3px 3px 1px #67476B">Text here.</p>
This text has shadow with #67476B color.
.textShadow {text-shadow: 3px 3px 1px #67476B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #67476B, 5px 5px 20px red">Text here.</p>
This text has shadow with #67476B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#67476B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#67476B, Direction=45, Strength=4)">Text</p>
This text has shadow with #67476B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #67476B; -webkit-box-shadow: 1px 1px 3px 2px #67476B; box-shadow: 1px 1px 3px 2px #67476B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #67476B; -webkit-box-shadow: 1px 1px 3px 2px #67476B; box-shadow:1px 1px 3px 2px #67476B;">
Div content here</div>
This text has color #67476B on black background.
This text has color #67476B on white background.
This text has black color on #67476B background.
This text has white color on #67476B background.