HEX: #AB6293
RGB: (171,98,147)
#AB6293 contains mainly red and blue colors. Web safe color of #AB6293 is #996699 (or #969).
#AB6293 color RGB value is (171,98,147).
RGB: (171,98,147) (67%,38%,58%)
R 171 of 255 = 67%
G 98 of 255 = 38%
B 147 of 255 = 58%
R + G + B ~ 54%. #AB6293 is middle color (not dark and not light).
R + G + B =
171 + 98 + 147 = 416 (100%)
R 171 of 416 ~ 41.11%
G 98 of 416 ~ 23.56%
B 147 of 416 ~ 35.34%
#AB6293 color CMYK value is (0,43,14,33).
CMYK: (0,43,14,33) C0M43Y14K33 (0%,43%,14%,33%) (0.00/0.43/0.14/0.33)
AB | 62 | 93 | |
---|---|---|---|
RGB | 171 | 98 | 147 |
HSL | 320° | 30.29% | 52.75% |
HSB/HSV | 320° | 42.69% | 67.06% |
CMYK | 0.00% | 42.69% | 14.04% |
32.94% |
HEX | AB | 62 | 93 |
Decimal | 171 | 98 | 147 |
Binary | 10101011 | 1100010 | 10010011 |
Octal | 253 | 142 | 223 |
Examples of css and html codes for elements with #AB6293 color. Also use rgb(171,98,147) instead hex code.
.myTextColor { color: #AB6293; }
<p style="color:#AB6293">This sample text font color is #AB6293.</p>
This text font color is #AB6293.
.myBgColor { background-color: #AB6293; }
<div style="background-color:#AB6293">Inner text</div>
This div background color is #AB6293.
.myBorderColor { border: 1px solid #AB6293; }
<div style="border:3px solid #AB6293">Div</div>
This div border color is #AB6293.
.myOpacity80 { color: #AB6293; opacity: 0.8; }
<p style="color:#AB6293;opacity:0.8;">80%</p>
Text with #AB6293 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB6293;}
<p style="text-shadow: 3px 3px 1px #AB6293">Text here.</p>
This text has shadow with #AB6293 color.
.textShadow {text-shadow: 3px 3px 1px #AB6293, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB6293, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB6293 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB6293, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB6293, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB6293 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB6293; -webkit-box-shadow: 1px 1px 3px 2px #AB6293; box-shadow: 1px 1px 3px 2px #AB6293; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB6293; -webkit-box-shadow: 1px 1px 3px 2px #AB6293; box-shadow:1px 1px 3px 2px #AB6293;">
Div content here</div>
This text has color #AB6293 on black background.
This text has color #AB6293 on white background.
This text has black color on #AB6293 background.
This text has white color on #AB6293 background.