HEX: #74681B
RGB: (116,104,27)
#74681B contains mainly red and green colors. Web safe color of #74681B is #666633 (or #663).
#74681B color RGB value is (116,104,27).
RGB: (116,104,27) (45%,41%,11%)
R 116 of 255 = 45%
G 104 of 255 = 41%
B 27 of 255 = 11%
R + G + B ~ 32%. #74681B is quite dark color.
R + G + B =
116 + 104 + 27 = 247 (100%)
R 116 of 247 ~ 46.96%
G 104 of 247 ~ 42.11%
B 27 of 247 ~ 10.93%
#74681B color CMYK value is (0,10,77,55).
CMYK: (0,10,77,55) C0M10Y77K55 (0%,10%,77%,55%) (0.00/0.10/0.77/0.55)
74 | 68 | 1B | |
---|---|---|---|
RGB | 116 | 104 | 27 |
HSL | 52° | 62.24% | 28.04% |
HSB/HSV | 52° | 76.72% | 45.49% |
CMYK | 0.00% | 10.34% | 76.72% |
54.51% |
HEX | 74 | 68 | 1B |
Decimal | 116 | 104 | 27 |
Binary | 1110100 | 1101000 | 11011 |
Octal | 164 | 150 | 33 |
Examples of css and html codes for elements with #74681B color. Also use rgb(116,104,27) instead hex code.
.myTextColor { color: #74681B; }
<p style="color:#74681B">This sample text font color is #74681B.</p>
This text font color is #74681B.
.myBgColor { background-color: #74681B; }
<div style="background-color:#74681B">Inner text</div>
This div background color is #74681B.
.myBorderColor { border: 1px solid #74681B; }
<div style="border:3px solid #74681B">Div</div>
This div border color is #74681B.
.myOpacity80 { color: #74681B; opacity: 0.8; }
<p style="color:#74681B;opacity:0.8;">80%</p>
Text with #74681B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74681B;}
<p style="text-shadow: 3px 3px 1px #74681B">Text here.</p>
This text has shadow with #74681B color.
.textShadow {text-shadow: 3px 3px 1px #74681B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74681B, 5px 5px 20px red">Text here.</p>
This text has shadow with #74681B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74681B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74681B, Direction=45, Strength=4)">Text</p>
This text has shadow with #74681B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74681B; -webkit-box-shadow: 1px 1px 3px 2px #74681B; box-shadow: 1px 1px 3px 2px #74681B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74681B; -webkit-box-shadow: 1px 1px 3px 2px #74681B; box-shadow:1px 1px 3px 2px #74681B;">
Div content here</div>
This text has color #74681B on black background.
This text has color #74681B on white background.
This text has black color on #74681B background.
This text has white color on #74681B background.