HEX: #AD8FBE
RGB: (173,143,190)
#AD8FBE contains red, green and blue colors in about the same proportion. Web safe color of #AD8FBE is #9999CC (or #99C).
#AD8FBE color RGB value is (173,143,190).
RGB: (173,143,190) (68%,56%,75%)
R 173 of 255 = 68%
G 143 of 255 = 56%
B 190 of 255 = 75%
R + G + B ~ 66%. #AD8FBE is quite light color.
R + G + B =
173 + 143 + 190 = 506 (100%)
R 173 of 506 ~ 34.19%
G 143 of 506 ~ 28.26%
B 190 of 506 ~ 37.55%
#AD8FBE color CMYK value is (9,25,0,25).
CMYK: (9,25,0,25) C9M25Y0K25 (9%,25%,0%,25%) (0.09/0.25/0.00/0.25)
AD | 8F | BE | |
---|---|---|---|
RGB | 173 | 143 | 190 |
HSL | 278° | 26.55% | 65.29% |
HSB/HSV | 278° | 24.74% | 74.51% |
CMYK | 8.95% | 24.74% | 0.00% |
25.49% |
HEX | AD | 8F | BE |
Decimal | 173 | 143 | 190 |
Binary | 10101101 | 10001111 | 10111110 |
Octal | 255 | 217 | 276 |
Examples of css and html codes for elements with #AD8FBE color. Also use rgb(173,143,190) instead hex code.
.myTextColor { color: #AD8FBE; }
<p style="color:#AD8FBE">This sample text font color is #AD8FBE.</p>
This text font color is #AD8FBE.
.myBgColor { background-color: #AD8FBE; }
<div style="background-color:#AD8FBE">Inner text</div>
This div background color is #AD8FBE.
.myBorderColor { border: 1px solid #AD8FBE; }
<div style="border:3px solid #AD8FBE">Div</div>
This div border color is #AD8FBE.
.myOpacity80 { color: #AD8FBE; opacity: 0.8; }
<p style="color:#AD8FBE;opacity:0.8;">80%</p>
Text with #AD8FBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD8FBE;}
<p style="text-shadow: 3px 3px 1px #AD8FBE">Text here.</p>
This text has shadow with #AD8FBE color.
.textShadow {text-shadow: 3px 3px 1px #AD8FBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD8FBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD8FBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD8FBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD8FBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD8FBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD8FBE; -webkit-box-shadow: 1px 1px 3px 2px #AD8FBE; box-shadow: 1px 1px 3px 2px #AD8FBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD8FBE; -webkit-box-shadow: 1px 1px 3px 2px #AD8FBE; box-shadow:1px 1px 3px 2px #AD8FBE;">
Div content here</div>
This text has color #AD8FBE on black background.
This text has color #AD8FBE on white background.
This text has black color on #AD8FBE background.
This text has white color on #AD8FBE background.