HEX: #AB9BD3
RGB: (171,155,211)
#AB9BD3 contains red, green and blue colors in about the same proportion. Web safe color of #AB9BD3 is #9999CC (or #99C).
#AB9BD3 color RGB value is (171,155,211).
RGB: (171,155,211) (67%,61%,83%)
R 171 of 255 = 67%
G 155 of 255 = 61%
B 211 of 255 = 83%
R + G + B ~ 70%. #AB9BD3 is quite light color.
R + G + B =
171 + 155 + 211 = 537 (100%)
R 171 of 537 ~ 31.84%
G 155 of 537 ~ 28.86%
B 211 of 537 ~ 39.29%
#AB9BD3 color CMYK value is (19,27,0,17).
CMYK: (19,27,0,17) C19M27Y0K17 (19%,27%,0%,17%) (0.19/0.27/0.00/0.17)
AB | 9B | D3 | |
---|---|---|---|
RGB | 171 | 155 | 211 |
HSL | 257° | 38.89% | 71.76% |
HSB/HSV | 257° | 26.54% | 82.75% |
CMYK | 18.96% | 26.54% | 0.00% |
17.25% |
HEX | AB | 9B | D3 |
Decimal | 171 | 155 | 211 |
Binary | 10101011 | 10011011 | 11010011 |
Octal | 253 | 233 | 323 |
Examples of css and html codes for elements with #AB9BD3 color. Also use rgb(171,155,211) instead hex code.
.myTextColor { color: #AB9BD3; }
<p style="color:#AB9BD3">This sample text font color is #AB9BD3.</p>
This text font color is #AB9BD3.
.myBgColor { background-color: #AB9BD3; }
<div style="background-color:#AB9BD3">Inner text</div>
This div background color is #AB9BD3.
.myBorderColor { border: 1px solid #AB9BD3; }
<div style="border:3px solid #AB9BD3">Div</div>
This div border color is #AB9BD3.
.myOpacity80 { color: #AB9BD3; opacity: 0.8; }
<p style="color:#AB9BD3;opacity:0.8;">80%</p>
Text with #AB9BD3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB9BD3;}
<p style="text-shadow: 3px 3px 1px #AB9BD3">Text here.</p>
This text has shadow with #AB9BD3 color.
.textShadow {text-shadow: 3px 3px 1px #AB9BD3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB9BD3, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB9BD3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB9BD3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB9BD3, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB9BD3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB9BD3; -webkit-box-shadow: 1px 1px 3px 2px #AB9BD3; box-shadow: 1px 1px 3px 2px #AB9BD3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB9BD3; -webkit-box-shadow: 1px 1px 3px 2px #AB9BD3; box-shadow:1px 1px 3px 2px #AB9BD3;">
Div content here</div>
This text has color #AB9BD3 on black background.
This text has color #AB9BD3 on white background.
This text has black color on #AB9BD3 background.
This text has white color on #AB9BD3 background.