HEX: #AB6095
RGB: (171,96,149)
#AB6095 contains mainly red and blue colors. Web safe color of #AB6095 is #996699 (or #969).
#AB6095 color RGB value is (171,96,149).
RGB: (171,96,149) (67%,38%,58%)
R 171 of 255 = 67%
G 96 of 255 = 38%
B 149 of 255 = 58%
R + G + B ~ 54%. #AB6095 is middle color (not dark and not light).
R + G + B =
171 + 96 + 149 = 416 (100%)
R 171 of 416 ~ 41.11%
G 96 of 416 ~ 23.08%
B 149 of 416 ~ 35.82%
#AB6095 color CMYK value is (0,44,13,33).
CMYK: (0,44,13,33) C0M44Y13K33 (0%,44%,13%,33%) (0.00/0.44/0.13/0.33)
AB | 60 | 95 | |
---|---|---|---|
RGB | 171 | 96 | 149 |
HSL | 318° | 30.86% | 52.35% |
HSB/HSV | 318° | 43.86% | 67.06% |
CMYK | 0.00% | 43.86% | 12.87% |
32.94% |
HEX | AB | 60 | 95 |
Decimal | 171 | 96 | 149 |
Binary | 10101011 | 1100000 | 10010101 |
Octal | 253 | 140 | 225 |
Examples of css and html codes for elements with #AB6095 color. Also use rgb(171,96,149) instead hex code.
.myTextColor { color: #AB6095; }
<p style="color:#AB6095">This sample text font color is #AB6095.</p>
This text font color is #AB6095.
.myBgColor { background-color: #AB6095; }
<div style="background-color:#AB6095">Inner text</div>
This div background color is #AB6095.
.myBorderColor { border: 1px solid #AB6095; }
<div style="border:3px solid #AB6095">Div</div>
This div border color is #AB6095.
.myOpacity80 { color: #AB6095; opacity: 0.8; }
<p style="color:#AB6095;opacity:0.8;">80%</p>
Text with #AB6095 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB6095;}
<p style="text-shadow: 3px 3px 1px #AB6095">Text here.</p>
This text has shadow with #AB6095 color.
.textShadow {text-shadow: 3px 3px 1px #AB6095, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB6095, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB6095 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB6095, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB6095, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB6095 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB6095; -webkit-box-shadow: 1px 1px 3px 2px #AB6095; box-shadow: 1px 1px 3px 2px #AB6095; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB6095; -webkit-box-shadow: 1px 1px 3px 2px #AB6095; box-shadow:1px 1px 3px 2px #AB6095;">
Div content here</div>
This text has color #AB6095 on black background.
This text has color #AB6095 on white background.
This text has black color on #AB6095 background.
This text has white color on #AB6095 background.