HEX: #997399
RGB: (153,115,153)
#997399 contains red, green and blue colors in about the same proportion. Web safe color of #997399 is #996699 (or #969).
#997399 color RGB value is (153,115,153).
RGB: (153,115,153) (60%,45%,60%)
R 153 of 255 = 60%
G 115 of 255 = 45%
B 153 of 255 = 60%
R + G + B ~ 55%. #997399 is middle color (not dark and not light).
R + G + B =
153 + 115 + 153 = 421 (100%)
R 153 of 421 ~ 36.34%
G 115 of 421 ~ 27.32%
B 153 of 421 ~ 36.34%
#997399 color CMYK value is (0,25,0,40).
CMYK: (0,25,0,40) C0M25Y0K40 (0%,25%,0%,40%) (0.00/0.25/0.00/0.40)
99 | 73 | 99 | |
---|---|---|---|
RGB | 153 | 115 | 153 |
HSL | 300° | 15.70% | 52.55% |
HSB/HSV | 300° | 24.84% | 60.00% |
CMYK | 0.00% | 24.84% | 0.00% |
40.00% |
HEX | 99 | 73 | 99 |
Decimal | 153 | 115 | 153 |
Binary | 10011001 | 1110011 | 10011001 |
Octal | 231 | 163 | 231 |
Examples of css and html codes for elements with #997399 color. Also use rgb(153,115,153) instead hex code.
.myTextColor { color: #997399; }
<p style="color:#997399">This sample text font color is #997399.</p>
This text font color is #997399.
.myBgColor { background-color: #997399; }
<div style="background-color:#997399">Inner text</div>
This div background color is #997399.
.myBorderColor { border: 1px solid #997399; }
<div style="border:3px solid #997399">Div</div>
This div border color is #997399.
.myOpacity80 { color: #997399; opacity: 0.8; }
<p style="color:#997399;opacity:0.8;">80%</p>
Text with #997399 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #997399;}
<p style="text-shadow: 3px 3px 1px #997399">Text here.</p>
This text has shadow with #997399 color.
.textShadow {text-shadow: 3px 3px 1px #997399, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #997399, 5px 5px 20px red">Text here.</p>
This text has shadow with #997399 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#997399, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#997399, Direction=45, Strength=4)">Text</p>
This text has shadow with #997399 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #997399; -webkit-box-shadow: 1px 1px 3px 2px #997399; box-shadow: 1px 1px 3px 2px #997399; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #997399; -webkit-box-shadow: 1px 1px 3px 2px #997399; box-shadow:1px 1px 3px 2px #997399;">
Div content here</div>
This text has color #997399 on black background.
This text has color #997399 on white background.
This text has black color on #997399 background.
This text has white color on #997399 background.