HEX: #3F764D
RGB: (63,118,77)
#3F764D contains red, green and blue colors in about the same proportion. Web safe color of #3F764D is #336633 (or #363).
#3F764D color RGB value is (63,118,77).
RGB: (63,118,77) (25%,46%,30%)
R 63 of 255 = 25%
G 118 of 255 = 46%
B 77 of 255 = 30%
R + G + B ~ 34%. #3F764D is quite dark color.
R + G + B =
63 + 118 + 77 = 258 (100%)
R 63 of 258 ~ 24.42%
G 118 of 258 ~ 45.74%
B 77 of 258 ~ 29.84%
#3F764D color CMYK value is (47,0,35,54).
CMYK: (47,0,35,54) C47M0Y35K54 (47%,0%,35%,54%) (0.47/0.00/0.35/0.54)
3F | 76 | 4D | |
---|---|---|---|
RGB | 63 | 118 | 77 |
HSL | 135° | 30.39% | 35.49% |
HSB/HSV | 135° | 46.61% | 46.27% |
CMYK | 46.61% | 0.00% | 34.75% |
53.73% |
HEX | 3F | 76 | 4D |
Decimal | 63 | 118 | 77 |
Binary | 111111 | 1110110 | 1001101 |
Octal | 77 | 166 | 115 |
Examples of css and html codes for elements with #3F764D color. Also use rgb(63,118,77) instead hex code.
.myTextColor { color: #3F764D; }
<p style="color:#3F764D">This sample text font color is #3F764D.</p>
This text font color is #3F764D.
.myBgColor { background-color: #3F764D; }
<div style="background-color:#3F764D">Inner text</div>
This div background color is #3F764D.
.myBorderColor { border: 1px solid #3F764D; }
<div style="border:3px solid #3F764D">Div</div>
This div border color is #3F764D.
.myOpacity80 { color: #3F764D; opacity: 0.8; }
<p style="color:#3F764D;opacity:0.8;">80%</p>
Text with #3F764D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #3F764D;}
<p style="text-shadow: 3px 3px 1px #3F764D">Text here.</p>
This text has shadow with #3F764D color.
.textShadow {text-shadow: 3px 3px 1px #3F764D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #3F764D, 5px 5px 20px red">Text here.</p>
This text has shadow with #3F764D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#3F764D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#3F764D, Direction=45, Strength=4)">Text</p>
This text has shadow with #3F764D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #3F764D; -webkit-box-shadow: 1px 1px 3px 2px #3F764D; box-shadow: 1px 1px 3px 2px #3F764D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #3F764D; -webkit-box-shadow: 1px 1px 3px 2px #3F764D; box-shadow:1px 1px 3px 2px #3F764D;">
Div content here</div>
This text has color #3F764D on black background.
This text has color #3F764D on white background.
This text has black color on #3F764D background.
This text has white color on #3F764D background.