HEX: #7CA576
RGB: (124,165,118)
#7CA576 contains red, green and blue colors in about the same proportion. Web safe color of #7CA576 is #669966 (or #696).
#7CA576 color RGB value is (124,165,118).
RGB: (124,165,118) (49%,65%,46%)
R 124 of 255 = 49%
G 165 of 255 = 65%
B 118 of 255 = 46%
R + G + B ~ 53%. #7CA576 is middle color (not dark and not light).
R + G + B =
124 + 165 + 118 = 407 (100%)
R 124 of 407 ~ 30.47%
G 165 of 407 ~ 40.54%
B 118 of 407 ~ 28.99%
#7CA576 color CMYK value is (25,0,28,35).
CMYK: (25,0,28,35) C25M0Y28K35 (25%,0%,28%,35%) (0.25/0.00/0.28/0.35)
7C | A5 | 76 | |
---|---|---|---|
RGB | 124 | 165 | 118 |
HSL | 112° | 20.70% | 55.49% |
HSB/HSV | 112° | 28.48% | 64.71% |
CMYK | 24.85% | 0.00% | 28.48% |
35.29% |
HEX | 7C | A5 | 76 |
Decimal | 124 | 165 | 118 |
Binary | 1111100 | 10100101 | 1110110 |
Octal | 174 | 245 | 166 |
Examples of css and html codes for elements with #7CA576 color. Also use rgb(124,165,118) instead hex code.
.myTextColor { color: #7CA576; }
<p style="color:#7CA576">This sample text font color is #7CA576.</p>
This text font color is #7CA576.
.myBgColor { background-color: #7CA576; }
<div style="background-color:#7CA576">Inner text</div>
This div background color is #7CA576.
.myBorderColor { border: 1px solid #7CA576; }
<div style="border:3px solid #7CA576">Div</div>
This div border color is #7CA576.
.myOpacity80 { color: #7CA576; opacity: 0.8; }
<p style="color:#7CA576;opacity:0.8;">80%</p>
Text with #7CA576 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7CA576;}
<p style="text-shadow: 3px 3px 1px #7CA576">Text here.</p>
This text has shadow with #7CA576 color.
.textShadow {text-shadow: 3px 3px 1px #7CA576, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7CA576, 5px 5px 20px red">Text here.</p>
This text has shadow with #7CA576 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7CA576, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7CA576, Direction=45, Strength=4)">Text</p>
This text has shadow with #7CA576 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7CA576; -webkit-box-shadow: 1px 1px 3px 2px #7CA576; box-shadow: 1px 1px 3px 2px #7CA576; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7CA576; -webkit-box-shadow: 1px 1px 3px 2px #7CA576; box-shadow:1px 1px 3px 2px #7CA576;">
Div content here</div>
This text has color #7CA576 on black background.
This text has color #7CA576 on white background.
This text has black color on #7CA576 background.
This text has white color on #7CA576 background.