HEX: #6F763D
RGB: (111,118,61)
#6F763D contains red, green and blue colors in about the same proportion. Web safe color of #6F763D is #666633 (or #663).
#6F763D color RGB value is (111,118,61).
RGB: (111,118,61) (44%,46%,24%)
R 111 of 255 = 44%
G 118 of 255 = 46%
B 61 of 255 = 24%
R + G + B ~ 38%. #6F763D is quite dark color.
R + G + B =
111 + 118 + 61 = 290 (100%)
R 111 of 290 ~ 38.28%
G 118 of 290 ~ 40.69%
B 61 of 290 ~ 21.03%
#6F763D color CMYK value is (6,0,48,54).
CMYK: (6,0,48,54) C6M0Y48K54 (6%,0%,48%,54%) (0.06/0.00/0.48/0.54)
6F | 76 | 3D | |
---|---|---|---|
RGB | 111 | 118 | 61 |
HSL | 67° | 31.84% | 35.10% |
HSB/HSV | 67° | 48.31% | 46.27% |
CMYK | 5.93% | 0.00% | 48.31% |
53.73% |
HEX | 6F | 76 | 3D |
Decimal | 111 | 118 | 61 |
Binary | 1101111 | 1110110 | 111101 |
Octal | 157 | 166 | 75 |
Examples of css and html codes for elements with #6F763D color. Also use rgb(111,118,61) instead hex code.
.myTextColor { color: #6F763D; }
<p style="color:#6F763D">This sample text font color is #6F763D.</p>
This text font color is #6F763D.
.myBgColor { background-color: #6F763D; }
<div style="background-color:#6F763D">Inner text</div>
This div background color is #6F763D.
.myBorderColor { border: 1px solid #6F763D; }
<div style="border:3px solid #6F763D">Div</div>
This div border color is #6F763D.
.myOpacity80 { color: #6F763D; opacity: 0.8; }
<p style="color:#6F763D;opacity:0.8;">80%</p>
Text with #6F763D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6F763D;}
<p style="text-shadow: 3px 3px 1px #6F763D">Text here.</p>
This text has shadow with #6F763D color.
.textShadow {text-shadow: 3px 3px 1px #6F763D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6F763D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6F763D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6F763D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6F763D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6F763D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6F763D; -webkit-box-shadow: 1px 1px 3px 2px #6F763D; box-shadow: 1px 1px 3px 2px #6F763D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6F763D; -webkit-box-shadow: 1px 1px 3px 2px #6F763D; box-shadow:1px 1px 3px 2px #6F763D;">
Div content here</div>
This text has color #6F763D on black background.
This text has color #6F763D on white background.
This text has black color on #6F763D background.
This text has white color on #6F763D background.