HEX: #507F72
RGB: (80,127,114)
#507F72 contains red, green and blue colors in about the same proportion. Web safe color of #507F72 is #666666 (or #666).
#507F72 color RGB value is (80,127,114).
RGB: (80,127,114) (31%,50%,45%)
R 80 of 255 = 31%
G 127 of 255 = 50%
B 114 of 255 = 45%
R + G + B ~ 42%. #507F72 is middle color (not dark and not light).
R + G + B =
80 + 127 + 114 = 321 (100%)
R 80 of 321 ~ 24.92%
G 127 of 321 ~ 39.56%
B 114 of 321 ~ 35.51%
#507F72 color CMYK value is (37,0,10,50).
CMYK: (37,0,10,50) C37M0Y10K50 (37%,0%,10%,50%) (0.37/0.00/0.10/0.50)
50 | 7F | 72 | |
---|---|---|---|
RGB | 80 | 127 | 114 |
HSL | 163° | 22.71% | 40.59% |
HSB/HSV | 163° | 37.01% | 49.80% |
CMYK | 37.01% | 0.00% | 10.24% |
50.20% |
HEX | 50 | 7F | 72 |
Decimal | 80 | 127 | 114 |
Binary | 1010000 | 1111111 | 1110010 |
Octal | 120 | 177 | 162 |
Examples of css and html codes for elements with #507F72 color. Also use rgb(80,127,114) instead hex code.
.myTextColor { color: #507F72; }
<p style="color:#507F72">This sample text font color is #507F72.</p>
This text font color is #507F72.
.myBgColor { background-color: #507F72; }
<div style="background-color:#507F72">Inner text</div>
This div background color is #507F72.
.myBorderColor { border: 1px solid #507F72; }
<div style="border:3px solid #507F72">Div</div>
This div border color is #507F72.
.myOpacity80 { color: #507F72; opacity: 0.8; }
<p style="color:#507F72;opacity:0.8;">80%</p>
Text with #507F72 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #507F72;}
<p style="text-shadow: 3px 3px 1px #507F72">Text here.</p>
This text has shadow with #507F72 color.
.textShadow {text-shadow: 3px 3px 1px #507F72, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #507F72, 5px 5px 20px red">Text here.</p>
This text has shadow with #507F72 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#507F72, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#507F72, Direction=45, Strength=4)">Text</p>
This text has shadow with #507F72 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #507F72; -webkit-box-shadow: 1px 1px 3px 2px #507F72; box-shadow: 1px 1px 3px 2px #507F72; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #507F72; -webkit-box-shadow: 1px 1px 3px 2px #507F72; box-shadow:1px 1px 3px 2px #507F72;">
Div content here</div>
This text has color #507F72 on black background.
This text has color #507F72 on white background.
This text has black color on #507F72 background.
This text has white color on #507F72 background.