HEX: #76A8AB
RGB: (118,168,171)
#76A8AB contains red, green and blue colors in about the same proportion. Web safe color of #76A8AB is #669999 (or #699).
#76A8AB color RGB value is (118,168,171).
RGB: (118,168,171) (46%,66%,67%)
R 118 of 255 = 46%
G 168 of 255 = 66%
B 171 of 255 = 67%
R + G + B ~ 60%. #76A8AB is middle color (not dark and not light).
R + G + B =
118 + 168 + 171 = 457 (100%)
R 118 of 457 ~ 25.82%
G 168 of 457 ~ 36.76%
B 171 of 457 ~ 37.42%
#76A8AB color CMYK value is (31,2,0,33).
CMYK: (31,2,0,33) C31M2Y0K33 (31%,2%,0%,33%) (0.31/0.02/0.00/0.33)
76 | A8 | AB | |
---|---|---|---|
RGB | 118 | 168 | 171 |
HSL | 183° | 23.98% | 56.67% |
HSB/HSV | 183° | 30.99% | 67.06% |
CMYK | 30.99% | 1.75% | 0.00% |
32.94% |
HEX | 76 | A8 | AB |
Decimal | 118 | 168 | 171 |
Binary | 1110110 | 10101000 | 10101011 |
Octal | 166 | 250 | 253 |
Examples of css and html codes for elements with #76A8AB color. Also use rgb(118,168,171) instead hex code.
.myTextColor { color: #76A8AB; }
<p style="color:#76A8AB">This sample text font color is #76A8AB.</p>
This text font color is #76A8AB.
.myBgColor { background-color: #76A8AB; }
<div style="background-color:#76A8AB">Inner text</div>
This div background color is #76A8AB.
.myBorderColor { border: 1px solid #76A8AB; }
<div style="border:3px solid #76A8AB">Div</div>
This div border color is #76A8AB.
.myOpacity80 { color: #76A8AB; opacity: 0.8; }
<p style="color:#76A8AB;opacity:0.8;">80%</p>
Text with #76A8AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76A8AB;}
<p style="text-shadow: 3px 3px 1px #76A8AB">Text here.</p>
This text has shadow with #76A8AB color.
.textShadow {text-shadow: 3px 3px 1px #76A8AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76A8AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #76A8AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76A8AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76A8AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #76A8AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76A8AB; -webkit-box-shadow: 1px 1px 3px 2px #76A8AB; box-shadow: 1px 1px 3px 2px #76A8AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76A8AB; -webkit-box-shadow: 1px 1px 3px 2px #76A8AB; box-shadow:1px 1px 3px 2px #76A8AB;">
Div content here</div>
This text has color #76A8AB on black background.
This text has color #76A8AB on white background.
This text has black color on #76A8AB background.
This text has white color on #76A8AB background.