HEX: #50AEA5
RGB: (80,174,165)
#50AEA5 contains mainly green and blue colors. Web safe color of #50AEA5 is #669999 (or #699).
#50AEA5 color RGB value is (80,174,165).
RGB: (80,174,165) (31%,68%,65%)
R 80 of 255 = 31%
G 174 of 255 = 68%
B 165 of 255 = 65%
R + G + B ~ 55%. #50AEA5 is middle color (not dark and not light).
R + G + B =
80 + 174 + 165 = 419 (100%)
R 80 of 419 ~ 19.09%
G 174 of 419 ~ 41.53%
B 165 of 419 ~ 39.38%
#50AEA5 color CMYK value is (54,0,5,32).
CMYK: (54,0,5,32) C54M0Y5K32 (54%,0%,5%,32%) (0.54/0.00/0.05/0.32)
50 | AE | A5 | |
---|---|---|---|
RGB | 80 | 174 | 165 |
HSL | 174° | 37.01% | 49.80% |
HSB/HSV | 174° | 54.02% | 68.24% |
CMYK | 54.02% | 0.00% | 5.17% |
31.76% |
HEX | 50 | AE | A5 |
Decimal | 80 | 174 | 165 |
Binary | 1010000 | 10101110 | 10100101 |
Octal | 120 | 256 | 245 |
Examples of css and html codes for elements with #50AEA5 color. Also use rgb(80,174,165) instead hex code.
.myTextColor { color: #50AEA5; }
<p style="color:#50AEA5">This sample text font color is #50AEA5.</p>
This text font color is #50AEA5.
.myBgColor { background-color: #50AEA5; }
<div style="background-color:#50AEA5">Inner text</div>
This div background color is #50AEA5.
.myBorderColor { border: 1px solid #50AEA5; }
<div style="border:3px solid #50AEA5">Div</div>
This div border color is #50AEA5.
.myOpacity80 { color: #50AEA5; opacity: 0.8; }
<p style="color:#50AEA5;opacity:0.8;">80%</p>
Text with #50AEA5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50AEA5;}
<p style="text-shadow: 3px 3px 1px #50AEA5">Text here.</p>
This text has shadow with #50AEA5 color.
.textShadow {text-shadow: 3px 3px 1px #50AEA5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50AEA5, 5px 5px 20px red">Text here.</p>
This text has shadow with #50AEA5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50AEA5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50AEA5, Direction=45, Strength=4)">Text</p>
This text has shadow with #50AEA5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50AEA5; -webkit-box-shadow: 1px 1px 3px 2px #50AEA5; box-shadow: 1px 1px 3px 2px #50AEA5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50AEA5; -webkit-box-shadow: 1px 1px 3px 2px #50AEA5; box-shadow:1px 1px 3px 2px #50AEA5;">
Div content here</div>
This text has color #50AEA5 on black background.
This text has color #50AEA5 on white background.
This text has black color on #50AEA5 background.
This text has white color on #50AEA5 background.