HEX: #737772
RGB: (115,119,114)
#737772 contains red, green and blue colors in about the same proportion. Web safe color of #737772 is #666666 (or #666).
#737772 color RGB value is (115,119,114).
RGB: (115,119,114) (45%,47%,45%)
R 115 of 255 = 45%
G 119 of 255 = 47%
B 114 of 255 = 45%
R + G + B ~ 46%. #737772 is middle color (not dark and not light).
R + G + B =
115 + 119 + 114 = 348 (100%)
R 115 of 348 ~ 33.05%
G 119 of 348 ~ 34.2%
B 114 of 348 ~ 32.76%
#737772 color CMYK value is (3,0,4,53).
CMYK: (3,0,4,53) C3M0Y4K53 (3%,0%,4%,53%) (0.03/0.00/0.04/0.53)
73 | 77 | 72 | |
---|---|---|---|
RGB | 115 | 119 | 114 |
HSL | 108° | 2.15% | 45.69% |
HSB/HSV | 108° | 4.20% | 46.67% |
CMYK | 3.36% | 0.00% | 4.20% |
53.33% |
HEX | 73 | 77 | 72 |
Decimal | 115 | 119 | 114 |
Binary | 1110011 | 1110111 | 1110010 |
Octal | 163 | 167 | 162 |
Examples of css and html codes for elements with #737772 color. Also use rgb(115,119,114) instead hex code.
.myTextColor { color: #737772; }
<p style="color:#737772">This sample text font color is #737772.</p>
This text font color is #737772.
.myBgColor { background-color: #737772; }
<div style="background-color:#737772">Inner text</div>
This div background color is #737772.
.myBorderColor { border: 1px solid #737772; }
<div style="border:3px solid #737772">Div</div>
This div border color is #737772.
.myOpacity80 { color: #737772; opacity: 0.8; }
<p style="color:#737772;opacity:0.8;">80%</p>
Text with #737772 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #737772;}
<p style="text-shadow: 3px 3px 1px #737772">Text here.</p>
This text has shadow with #737772 color.
.textShadow {text-shadow: 3px 3px 1px #737772, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #737772, 5px 5px 20px red">Text here.</p>
This text has shadow with #737772 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#737772, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#737772, Direction=45, Strength=4)">Text</p>
This text has shadow with #737772 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #737772; -webkit-box-shadow: 1px 1px 3px 2px #737772; box-shadow: 1px 1px 3px 2px #737772; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #737772; -webkit-box-shadow: 1px 1px 3px 2px #737772; box-shadow:1px 1px 3px 2px #737772;">
Div content here</div>
This text has color #737772 on black background.
This text has color #737772 on white background.
This text has black color on #737772 background.
This text has white color on #737772 background.