HEX: #85ABBB
RGB: (133,171,187)
#85ABBB contains red, green and blue colors in about the same proportion. Web safe color of #85ABBB is #9999CC (or #99C).
#85ABBB color RGB value is (133,171,187).
RGB: (133,171,187) (52%,67%,73%)
R 133 of 255 = 52%
G 171 of 255 = 67%
B 187 of 255 = 73%
R + G + B ~ 64%. #85ABBB is quite light color.
R + G + B =
133 + 171 + 187 = 491 (100%)
R 133 of 491 ~ 27.09%
G 171 of 491 ~ 34.83%
B 187 of 491 ~ 38.09%
#85ABBB color CMYK value is (29,9,0,27).
CMYK: (29,9,0,27) C29M9Y0K27 (29%,9%,0%,27%) (0.29/0.09/0.00/0.27)
85 | AB | BB | |
---|---|---|---|
RGB | 133 | 171 | 187 |
HSL | 198° | 28.42% | 62.75% |
HSB/HSV | 198° | 28.88% | 73.33% |
CMYK | 28.88% | 8.56% | 0.00% |
26.67% |
HEX | 85 | AB | BB |
Decimal | 133 | 171 | 187 |
Binary | 10000101 | 10101011 | 10111011 |
Octal | 205 | 253 | 273 |
Examples of css and html codes for elements with #85ABBB color. Also use rgb(133,171,187) instead hex code.
.myTextColor { color: #85ABBB; }
<p style="color:#85ABBB">This sample text font color is #85ABBB.</p>
This text font color is #85ABBB.
.myBgColor { background-color: #85ABBB; }
<div style="background-color:#85ABBB">Inner text</div>
This div background color is #85ABBB.
.myBorderColor { border: 1px solid #85ABBB; }
<div style="border:3px solid #85ABBB">Div</div>
This div border color is #85ABBB.
.myOpacity80 { color: #85ABBB; opacity: 0.8; }
<p style="color:#85ABBB;opacity:0.8;">80%</p>
Text with #85ABBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #85ABBB;}
<p style="text-shadow: 3px 3px 1px #85ABBB">Text here.</p>
This text has shadow with #85ABBB color.
.textShadow {text-shadow: 3px 3px 1px #85ABBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #85ABBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #85ABBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#85ABBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#85ABBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #85ABBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #85ABBB; -webkit-box-shadow: 1px 1px 3px 2px #85ABBB; box-shadow: 1px 1px 3px 2px #85ABBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #85ABBB; -webkit-box-shadow: 1px 1px 3px 2px #85ABBB; box-shadow:1px 1px 3px 2px #85ABBB;">
Div content here</div>
This text has color #85ABBB on black background.
This text has color #85ABBB on white background.
This text has black color on #85ABBB background.
This text has white color on #85ABBB background.