HEX: #764D1B
RGB: (118,77,27)
#764D1B contains mainly red and green colors. Web safe color of #764D1B is #663333 (or #633).
#764D1B color RGB value is (118,77,27).
RGB: (118,77,27) (46%,30%,11%)
R 118 of 255 = 46%
G 77 of 255 = 30%
B 27 of 255 = 11%
R + G + B ~ 29%. #764D1B is quite dark color.
R + G + B =
118 + 77 + 27 = 222 (100%)
R 118 of 222 ~ 53.15%
G 77 of 222 ~ 34.68%
B 27 of 222 ~ 12.16%
#764D1B color CMYK value is (0,35,77,54).
CMYK: (0,35,77,54) C0M35Y77K54 (0%,35%,77%,54%) (0.00/0.35/0.77/0.54)
76 | 4D | 1B | |
---|---|---|---|
RGB | 118 | 77 | 27 |
HSL | 33° | 62.76% | 28.43% |
HSB/HSV | 33° | 77.12% | 46.27% |
CMYK | 0.00% | 34.75% | 77.12% |
53.73% |
HEX | 76 | 4D | 1B |
Decimal | 118 | 77 | 27 |
Binary | 1110110 | 1001101 | 11011 |
Octal | 166 | 115 | 33 |
Examples of css and html codes for elements with #764D1B color. Also use rgb(118,77,27) instead hex code.
.myTextColor { color: #764D1B; }
<p style="color:#764D1B">This sample text font color is #764D1B.</p>
This text font color is #764D1B.
.myBgColor { background-color: #764D1B; }
<div style="background-color:#764D1B">Inner text</div>
This div background color is #764D1B.
.myBorderColor { border: 1px solid #764D1B; }
<div style="border:3px solid #764D1B">Div</div>
This div border color is #764D1B.
.myOpacity80 { color: #764D1B; opacity: 0.8; }
<p style="color:#764D1B;opacity:0.8;">80%</p>
Text with #764D1B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #764D1B;}
<p style="text-shadow: 3px 3px 1px #764D1B">Text here.</p>
This text has shadow with #764D1B color.
.textShadow {text-shadow: 3px 3px 1px #764D1B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #764D1B, 5px 5px 20px red">Text here.</p>
This text has shadow with #764D1B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#764D1B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#764D1B, Direction=45, Strength=4)">Text</p>
This text has shadow with #764D1B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #764D1B; -webkit-box-shadow: 1px 1px 3px 2px #764D1B; box-shadow: 1px 1px 3px 2px #764D1B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #764D1B; -webkit-box-shadow: 1px 1px 3px 2px #764D1B; box-shadow:1px 1px 3px 2px #764D1B;">
Div content here</div>
This text has color #764D1B on black background.
This text has color #764D1B on white background.
This text has black color on #764D1B background.
This text has white color on #764D1B background.