HEX: #AD6497
RGB: (173,100,151)
#AD6497 contains mainly red and blue colors. Web safe color of #AD6497 is #996699 (or #969).
#AD6497 color RGB value is (173,100,151).
RGB: (173,100,151) (68%,39%,59%)
R 173 of 255 = 68%
G 100 of 255 = 39%
B 151 of 255 = 59%
R + G + B ~ 55%. #AD6497 is middle color (not dark and not light).
R + G + B =
173 + 100 + 151 = 424 (100%)
R 173 of 424 ~ 40.8%
G 100 of 424 ~ 23.58%
B 151 of 424 ~ 35.61%
#AD6497 color CMYK value is (0,42,13,32).
CMYK: (0,42,13,32) C0M42Y13K32 (0%,42%,13%,32%) (0.00/0.42/0.13/0.32)
AD | 64 | 97 | |
---|---|---|---|
RGB | 173 | 100 | 151 |
HSL | 318° | 30.80% | 53.53% |
HSB/HSV | 318° | 42.20% | 67.84% |
CMYK | 0.00% | 42.20% | 12.72% |
32.16% |
HEX | AD | 64 | 97 |
Decimal | 173 | 100 | 151 |
Binary | 10101101 | 1100100 | 10010111 |
Octal | 255 | 144 | 227 |
Examples of css and html codes for elements with #AD6497 color. Also use rgb(173,100,151) instead hex code.
.myTextColor { color: #AD6497; }
<p style="color:#AD6497">This sample text font color is #AD6497.</p>
This text font color is #AD6497.
.myBgColor { background-color: #AD6497; }
<div style="background-color:#AD6497">Inner text</div>
This div background color is #AD6497.
.myBorderColor { border: 1px solid #AD6497; }
<div style="border:3px solid #AD6497">Div</div>
This div border color is #AD6497.
.myOpacity80 { color: #AD6497; opacity: 0.8; }
<p style="color:#AD6497;opacity:0.8;">80%</p>
Text with #AD6497 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD6497;}
<p style="text-shadow: 3px 3px 1px #AD6497">Text here.</p>
This text has shadow with #AD6497 color.
.textShadow {text-shadow: 3px 3px 1px #AD6497, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD6497, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD6497 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD6497, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD6497, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD6497 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD6497; -webkit-box-shadow: 1px 1px 3px 2px #AD6497; box-shadow: 1px 1px 3px 2px #AD6497; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD6497; -webkit-box-shadow: 1px 1px 3px 2px #AD6497; box-shadow:1px 1px 3px 2px #AD6497;">
Div content here</div>
This text has color #AD6497 on black background.
This text has color #AD6497 on white background.
This text has black color on #AD6497 background.
This text has white color on #AD6497 background.