HEX: #888ABD
RGB: (136,138,189)
#888ABD contains red, green and blue colors in about the same proportion. Web safe color of #888ABD is #9999CC (or #99C).
#888ABD color RGB value is (136,138,189).
RGB: (136,138,189) (53%,54%,74%)
R 136 of 255 = 53%
G 138 of 255 = 54%
B 189 of 255 = 74%
R + G + B ~ 60%. #888ABD is middle color (not dark and not light).
R + G + B =
136 + 138 + 189 = 463 (100%)
R 136 of 463 ~ 29.37%
G 138 of 463 ~ 29.81%
B 189 of 463 ~ 40.82%
#888ABD color CMYK value is (28,27,0,26).
CMYK: (28,27,0,26) C28M27Y0K26 (28%,27%,0%,26%) (0.28/0.27/0.00/0.26)
88 | 8A | BD | |
---|---|---|---|
RGB | 136 | 138 | 189 |
HSL | 238° | 28.65% | 63.73% |
HSB/HSV | 238° | 28.04% | 74.12% |
CMYK | 28.04% | 26.98% | 0.00% |
25.88% |
HEX | 88 | 8A | BD |
Decimal | 136 | 138 | 189 |
Binary | 10001000 | 10001010 | 10111101 |
Octal | 210 | 212 | 275 |
Examples of css and html codes for elements with #888ABD color. Also use rgb(136,138,189) instead hex code.
.myTextColor { color: #888ABD; }
<p style="color:#888ABD">This sample text font color is #888ABD.</p>
This text font color is #888ABD.
.myBgColor { background-color: #888ABD; }
<div style="background-color:#888ABD">Inner text</div>
This div background color is #888ABD.
.myBorderColor { border: 1px solid #888ABD; }
<div style="border:3px solid #888ABD">Div</div>
This div border color is #888ABD.
.myOpacity80 { color: #888ABD; opacity: 0.8; }
<p style="color:#888ABD;opacity:0.8;">80%</p>
Text with #888ABD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #888ABD;}
<p style="text-shadow: 3px 3px 1px #888ABD">Text here.</p>
This text has shadow with #888ABD color.
.textShadow {text-shadow: 3px 3px 1px #888ABD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #888ABD, 5px 5px 20px red">Text here.</p>
This text has shadow with #888ABD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#888ABD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#888ABD, Direction=45, Strength=4)">Text</p>
This text has shadow with #888ABD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #888ABD; -webkit-box-shadow: 1px 1px 3px 2px #888ABD; box-shadow: 1px 1px 3px 2px #888ABD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #888ABD; -webkit-box-shadow: 1px 1px 3px 2px #888ABD; box-shadow:1px 1px 3px 2px #888ABD;">
Div content here</div>
This text has color #888ABD on black background.
This text has color #888ABD on white background.
This text has black color on #888ABD background.
This text has white color on #888ABD background.