HEX: #80999D
RGB: (128,153,157)
#80999D contains red, green and blue colors in about the same proportion. Web safe color of #80999D is #669999 (or #699).
#80999D color RGB value is (128,153,157).
RGB: (128,153,157) (50%,60%,62%)
R 128 of 255 = 50%
G 153 of 255 = 60%
B 157 of 255 = 62%
R + G + B ~ 57%. #80999D is middle color (not dark and not light).
R + G + B =
128 + 153 + 157 = 438 (100%)
R 128 of 438 ~ 29.22%
G 153 of 438 ~ 34.93%
B 157 of 438 ~ 35.84%
#80999D color CMYK value is (18,3,0,38).
CMYK: (18,3,0,38) C18M3Y0K38 (18%,3%,0%,38%) (0.18/0.03/0.00/0.38)
80 | 99 | 9D | |
---|---|---|---|
RGB | 128 | 153 | 157 |
HSL | 188° | 12.89% | 55.88% |
HSB/HSV | 188° | 18.47% | 61.57% |
CMYK | 18.47% | 2.55% | 0.00% |
38.43% |
HEX | 80 | 99 | 9D |
Decimal | 128 | 153 | 157 |
Binary | 10000000 | 10011001 | 10011101 |
Octal | 200 | 231 | 235 |
Examples of css and html codes for elements with #80999D color. Also use rgb(128,153,157) instead hex code.
.myTextColor { color: #80999D; }
<p style="color:#80999D">This sample text font color is #80999D.</p>
This text font color is #80999D.
.myBgColor { background-color: #80999D; }
<div style="background-color:#80999D">Inner text</div>
This div background color is #80999D.
.myBorderColor { border: 1px solid #80999D; }
<div style="border:3px solid #80999D">Div</div>
This div border color is #80999D.
.myOpacity80 { color: #80999D; opacity: 0.8; }
<p style="color:#80999D;opacity:0.8;">80%</p>
Text with #80999D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #80999D;}
<p style="text-shadow: 3px 3px 1px #80999D">Text here.</p>
This text has shadow with #80999D color.
.textShadow {text-shadow: 3px 3px 1px #80999D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #80999D, 5px 5px 20px red">Text here.</p>
This text has shadow with #80999D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#80999D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#80999D, Direction=45, Strength=4)">Text</p>
This text has shadow with #80999D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #80999D; -webkit-box-shadow: 1px 1px 3px 2px #80999D; box-shadow: 1px 1px 3px 2px #80999D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #80999D; -webkit-box-shadow: 1px 1px 3px 2px #80999D; box-shadow:1px 1px 3px 2px #80999D;">
Div content here</div>
This text has color #80999D on black background.
This text has color #80999D on white background.
This text has black color on #80999D background.
This text has white color on #80999D background.