HEX: #888AAD
RGB: (136,138,173)
#888AAD contains red, green and blue colors in about the same proportion. Web safe color of #888AAD is #999999 (or #999).
#888AAD color RGB value is (136,138,173).
RGB: (136,138,173) (53%,54%,68%)
R 136 of 255 = 53%
G 138 of 255 = 54%
B 173 of 255 = 68%
R + G + B ~ 58%. #888AAD is middle color (not dark and not light).
R + G + B =
136 + 138 + 173 = 447 (100%)
R 136 of 447 ~ 30.43%
G 138 of 447 ~ 30.87%
B 173 of 447 ~ 38.7%
#888AAD color CMYK value is (21,20,0,32).
CMYK: (21,20,0,32) C21M20Y0K32 (21%,20%,0%,32%) (0.21/0.20/0.00/0.32)
88 | 8A | AD | |
---|---|---|---|
RGB | 136 | 138 | 173 |
HSL | 237° | 18.41% | 60.59% |
HSB/HSV | 237° | 21.39% | 67.84% |
CMYK | 21.39% | 20.23% | 0.00% |
32.16% |
HEX | 88 | 8A | AD |
Decimal | 136 | 138 | 173 |
Binary | 10001000 | 10001010 | 10101101 |
Octal | 210 | 212 | 255 |
Examples of css and html codes for elements with #888AAD color. Also use rgb(136,138,173) instead hex code.
.myTextColor { color: #888AAD; }
<p style="color:#888AAD">This sample text font color is #888AAD.</p>
This text font color is #888AAD.
.myBgColor { background-color: #888AAD; }
<div style="background-color:#888AAD">Inner text</div>
This div background color is #888AAD.
.myBorderColor { border: 1px solid #888AAD; }
<div style="border:3px solid #888AAD">Div</div>
This div border color is #888AAD.
.myOpacity80 { color: #888AAD; opacity: 0.8; }
<p style="color:#888AAD;opacity:0.8;">80%</p>
Text with #888AAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #888AAD;}
<p style="text-shadow: 3px 3px 1px #888AAD">Text here.</p>
This text has shadow with #888AAD color.
.textShadow {text-shadow: 3px 3px 1px #888AAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #888AAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #888AAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#888AAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#888AAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #888AAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #888AAD; -webkit-box-shadow: 1px 1px 3px 2px #888AAD; box-shadow: 1px 1px 3px 2px #888AAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #888AAD; -webkit-box-shadow: 1px 1px 3px 2px #888AAD; box-shadow:1px 1px 3px 2px #888AAD;">
Div content here</div>
This text has color #888AAD on black background.
This text has color #888AAD on white background.
This text has black color on #888AAD background.
This text has white color on #888AAD background.