HEX: #98636A
RGB: (152,99,106)
#98636A contains red, green and blue colors in about the same proportion. Web safe color of #98636A is #996666 (or #966).
#98636A color RGB value is (152,99,106).
RGB: (152,99,106) (60%,39%,42%)
R 152 of 255 = 60%
G 99 of 255 = 39%
B 106 of 255 = 42%
R + G + B ~ 47%. #98636A is middle color (not dark and not light).
R + G + B =
152 + 99 + 106 = 357 (100%)
R 152 of 357 ~ 42.58%
G 99 of 357 ~ 27.73%
B 106 of 357 ~ 29.69%
#98636A color CMYK value is (0,35,30,40).
CMYK: (0,35,30,40) C0M35Y30K40 (0%,35%,30%,40%) (0.00/0.35/0.30/0.40)
98 | 63 | 6A | |
---|---|---|---|
RGB | 152 | 99 | 106 |
HSL | 352° | 21.12% | 49.22% |
HSB/HSV | 352° | 34.87% | 59.61% |
CMYK | 0.00% | 34.87% | 30.26% |
40.39% |
HEX | 98 | 63 | 6A |
Decimal | 152 | 99 | 106 |
Binary | 10011000 | 1100011 | 1101010 |
Octal | 230 | 143 | 152 |
Examples of css and html codes for elements with #98636A color. Also use rgb(152,99,106) instead hex code.
.myTextColor { color: #98636A; }
<p style="color:#98636A">This sample text font color is #98636A.</p>
This text font color is #98636A.
.myBgColor { background-color: #98636A; }
<div style="background-color:#98636A">Inner text</div>
This div background color is #98636A.
.myBorderColor { border: 1px solid #98636A; }
<div style="border:3px solid #98636A">Div</div>
This div border color is #98636A.
.myOpacity80 { color: #98636A; opacity: 0.8; }
<p style="color:#98636A;opacity:0.8;">80%</p>
Text with #98636A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #98636A;}
<p style="text-shadow: 3px 3px 1px #98636A">Text here.</p>
This text has shadow with #98636A color.
.textShadow {text-shadow: 3px 3px 1px #98636A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #98636A, 5px 5px 20px red">Text here.</p>
This text has shadow with #98636A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#98636A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#98636A, Direction=45, Strength=4)">Text</p>
This text has shadow with #98636A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #98636A; -webkit-box-shadow: 1px 1px 3px 2px #98636A; box-shadow: 1px 1px 3px 2px #98636A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #98636A; -webkit-box-shadow: 1px 1px 3px 2px #98636A; box-shadow:1px 1px 3px 2px #98636A;">
Div content here</div>
This text has color #98636A on black background.
This text has color #98636A on white background.
This text has black color on #98636A background.
This text has white color on #98636A background.