HEX: #83988A
RGB: (131,152,138)
#83988A contains red, green and blue colors in about the same proportion. Web safe color of #83988A is #999999 (or #999).
#83988A color RGB value is (131,152,138).
RGB: (131,152,138) (51%,60%,54%)
R 131 of 255 = 51%
G 152 of 255 = 60%
B 138 of 255 = 54%
R + G + B ~ 55%. #83988A is middle color (not dark and not light).
R + G + B =
131 + 152 + 138 = 421 (100%)
R 131 of 421 ~ 31.12%
G 152 of 421 ~ 36.1%
B 138 of 421 ~ 32.78%
#83988A color CMYK value is (14,0,9,40).
CMYK: (14,0,9,40) C14M0Y9K40 (14%,0%,9%,40%) (0.14/0.00/0.09/0.40)
83 | 98 | 8A | |
---|---|---|---|
RGB | 131 | 152 | 138 |
HSL | 140° | 9.25% | 55.49% |
HSB/HSV | 140° | 13.82% | 59.61% |
CMYK | 13.82% | 0.00% | 9.21% |
40.39% |
HEX | 83 | 98 | 8A |
Decimal | 131 | 152 | 138 |
Binary | 10000011 | 10011000 | 10001010 |
Octal | 203 | 230 | 212 |
Examples of css and html codes for elements with #83988A color. Also use rgb(131,152,138) instead hex code.
.myTextColor { color: #83988A; }
<p style="color:#83988A">This sample text font color is #83988A.</p>
This text font color is #83988A.
.myBgColor { background-color: #83988A; }
<div style="background-color:#83988A">Inner text</div>
This div background color is #83988A.
.myBorderColor { border: 1px solid #83988A; }
<div style="border:3px solid #83988A">Div</div>
This div border color is #83988A.
.myOpacity80 { color: #83988A; opacity: 0.8; }
<p style="color:#83988A;opacity:0.8;">80%</p>
Text with #83988A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83988A;}
<p style="text-shadow: 3px 3px 1px #83988A">Text here.</p>
This text has shadow with #83988A color.
.textShadow {text-shadow: 3px 3px 1px #83988A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83988A, 5px 5px 20px red">Text here.</p>
This text has shadow with #83988A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83988A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83988A, Direction=45, Strength=4)">Text</p>
This text has shadow with #83988A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83988A; -webkit-box-shadow: 1px 1px 3px 2px #83988A; box-shadow: 1px 1px 3px 2px #83988A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83988A; -webkit-box-shadow: 1px 1px 3px 2px #83988A; box-shadow:1px 1px 3px 2px #83988A;">
Div content here</div>
This text has color #83988A on black background.
This text has color #83988A on white background.
This text has black color on #83988A background.
This text has white color on #83988A background.