HEX: #47414A
RGB: (71,65,74)
#47414A contains red, green and blue colors in about the same proportion. Web safe color of #47414A is #333333 (or #333).
#47414A color RGB value is (71,65,74).
RGB: (71,65,74) (28%,25%,29%)
R 71 of 255 = 28%
G 65 of 255 = 25%
B 74 of 255 = 29%
R + G + B ~ 27%. #47414A is quite dark color.
R + G + B =
71 + 65 + 74 = 210 (100%)
R 71 of 210 ~ 33.81%
G 65 of 210 ~ 30.95%
B 74 of 210 ~ 35.24%
#47414A color CMYK value is (4,12,0,71).
CMYK: (4,12,0,71) C4M12Y0K71 (4%,12%,0%,71%) (0.04/0.12/0.00/0.71)
47 | 41 | 4A | |
---|---|---|---|
RGB | 71 | 65 | 74 |
HSL | 280° | 6.47% | 27.25% |
HSB/HSV | 280° | 12.16% | 29.02% |
CMYK | 4.05% | 12.16% | 0.00% |
70.98% |
HEX | 47 | 41 | 4A |
Decimal | 71 | 65 | 74 |
Binary | 1000111 | 1000001 | 1001010 |
Octal | 107 | 101 | 112 |
Examples of css and html codes for elements with #47414A color. Also use rgb(71,65,74) instead hex code.
.myTextColor { color: #47414A; }
<p style="color:#47414A">This sample text font color is #47414A.</p>
This text font color is #47414A.
.myBgColor { background-color: #47414A; }
<div style="background-color:#47414A">Inner text</div>
This div background color is #47414A.
.myBorderColor { border: 1px solid #47414A; }
<div style="border:3px solid #47414A">Div</div>
This div border color is #47414A.
.myOpacity80 { color: #47414A; opacity: 0.8; }
<p style="color:#47414A;opacity:0.8;">80%</p>
Text with #47414A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47414A;}
<p style="text-shadow: 3px 3px 1px #47414A">Text here.</p>
This text has shadow with #47414A color.
.textShadow {text-shadow: 3px 3px 1px #47414A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47414A, 5px 5px 20px red">Text here.</p>
This text has shadow with #47414A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47414A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47414A, Direction=45, Strength=4)">Text</p>
This text has shadow with #47414A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47414A; -webkit-box-shadow: 1px 1px 3px 2px #47414A; box-shadow: 1px 1px 3px 2px #47414A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47414A; -webkit-box-shadow: 1px 1px 3px 2px #47414A; box-shadow:1px 1px 3px 2px #47414A;">
Div content here</div>
This text has color #47414A on black background.
This text has color #47414A on white background.
This text has black color on #47414A background.
This text has white color on #47414A background.