HEX: #AD7DBE
RGB: (173,125,190)
#AD7DBE contains mainly red and blue colors. Web safe color of #AD7DBE is #9966CC (or #96C).
#AD7DBE color RGB value is (173,125,190).
RGB: (173,125,190) (68%,49%,75%)
R 173 of 255 = 68%
G 125 of 255 = 49%
B 190 of 255 = 75%
R + G + B ~ 64%. #AD7DBE is quite light color.
R + G + B =
173 + 125 + 190 = 488 (100%)
R 173 of 488 ~ 35.45%
G 125 of 488 ~ 25.61%
B 190 of 488 ~ 38.93%
#AD7DBE color CMYK value is (9,34,0,25).
CMYK: (9,34,0,25) C9M34Y0K25 (9%,34%,0%,25%) (0.09/0.34/0.00/0.25)
AD | 7D | BE | |
---|---|---|---|
RGB | 173 | 125 | 190 |
HSL | 284° | 33.33% | 61.76% |
HSB/HSV | 284° | 34.21% | 74.51% |
CMYK | 8.95% | 34.21% | 0.00% |
25.49% |
HEX | AD | 7D | BE |
Decimal | 173 | 125 | 190 |
Binary | 10101101 | 1111101 | 10111110 |
Octal | 255 | 175 | 276 |
Examples of css and html codes for elements with #AD7DBE color. Also use rgb(173,125,190) instead hex code.
.myTextColor { color: #AD7DBE; }
<p style="color:#AD7DBE">This sample text font color is #AD7DBE.</p>
This text font color is #AD7DBE.
.myBgColor { background-color: #AD7DBE; }
<div style="background-color:#AD7DBE">Inner text</div>
This div background color is #AD7DBE.
.myBorderColor { border: 1px solid #AD7DBE; }
<div style="border:3px solid #AD7DBE">Div</div>
This div border color is #AD7DBE.
.myOpacity80 { color: #AD7DBE; opacity: 0.8; }
<p style="color:#AD7DBE;opacity:0.8;">80%</p>
Text with #AD7DBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD7DBE;}
<p style="text-shadow: 3px 3px 1px #AD7DBE">Text here.</p>
This text has shadow with #AD7DBE color.
.textShadow {text-shadow: 3px 3px 1px #AD7DBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD7DBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD7DBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD7DBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD7DBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD7DBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD7DBE; -webkit-box-shadow: 1px 1px 3px 2px #AD7DBE; box-shadow: 1px 1px 3px 2px #AD7DBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD7DBE; -webkit-box-shadow: 1px 1px 3px 2px #AD7DBE; box-shadow:1px 1px 3px 2px #AD7DBE;">
Div content here</div>
This text has color #AD7DBE on black background.
This text has color #AD7DBE on white background.
This text has black color on #AD7DBE background.
This text has white color on #AD7DBE background.