HEX: #72473E
RGB: (114,71,62)
#72473E contains red, green and blue colors in about the same proportion. Web safe color of #72473E is #663333 (or #633).
#72473E color RGB value is (114,71,62).
RGB: (114,71,62) (45%,28%,24%)
R 114 of 255 = 45%
G 71 of 255 = 28%
B 62 of 255 = 24%
R + G + B ~ 32%. #72473E is quite dark color.
R + G + B =
114 + 71 + 62 = 247 (100%)
R 114 of 247 ~ 46.15%
G 71 of 247 ~ 28.74%
B 62 of 247 ~ 25.1%
#72473E color CMYK value is (0,38,46,55).
CMYK: (0,38,46,55) C0M38Y46K55 (0%,38%,46%,55%) (0.00/0.38/0.46/0.55)
72 | 47 | 3E | |
---|---|---|---|
RGB | 114 | 71 | 62 |
HSL | 10° | 29.55% | 34.51% |
HSB/HSV | 10° | 45.61% | 44.71% |
CMYK | 0.00% | 37.72% | 45.61% |
55.29% |
HEX | 72 | 47 | 3E |
Decimal | 114 | 71 | 62 |
Binary | 1110010 | 1000111 | 111110 |
Octal | 162 | 107 | 76 |
Examples of css and html codes for elements with #72473E color. Also use rgb(114,71,62) instead hex code.
.myTextColor { color: #72473E; }
<p style="color:#72473E">This sample text font color is #72473E.</p>
This text font color is #72473E.
.myBgColor { background-color: #72473E; }
<div style="background-color:#72473E">Inner text</div>
This div background color is #72473E.
.myBorderColor { border: 1px solid #72473E; }
<div style="border:3px solid #72473E">Div</div>
This div border color is #72473E.
.myOpacity80 { color: #72473E; opacity: 0.8; }
<p style="color:#72473E;opacity:0.8;">80%</p>
Text with #72473E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72473E;}
<p style="text-shadow: 3px 3px 1px #72473E">Text here.</p>
This text has shadow with #72473E color.
.textShadow {text-shadow: 3px 3px 1px #72473E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72473E, 5px 5px 20px red">Text here.</p>
This text has shadow with #72473E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72473E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72473E, Direction=45, Strength=4)">Text</p>
This text has shadow with #72473E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72473E; -webkit-box-shadow: 1px 1px 3px 2px #72473E; box-shadow: 1px 1px 3px 2px #72473E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72473E; -webkit-box-shadow: 1px 1px 3px 2px #72473E; box-shadow:1px 1px 3px 2px #72473E;">
Div content here</div>
This text has color #72473E on black background.
This text has color #72473E on white background.
This text has black color on #72473E background.
This text has white color on #72473E background.