HEX: #AC63BD
RGB: (172,99,189)
#AC63BD contains mainly red and blue colors. Web safe color of #AC63BD is #9966CC (or #96C).
#AC63BD color RGB value is (172,99,189).
RGB: (172,99,189) (67%,39%,74%)
R 172 of 255 = 67%
G 99 of 255 = 39%
B 189 of 255 = 74%
R + G + B ~ 60%. #AC63BD is middle color (not dark and not light).
R + G + B =
172 + 99 + 189 = 460 (100%)
R 172 of 460 ~ 37.39%
G 99 of 460 ~ 21.52%
B 189 of 460 ~ 41.09%
#AC63BD color CMYK value is (9,48,0,26).
CMYK: (9,48,0,26) C9M48Y0K26 (9%,48%,0%,26%) (0.09/0.48/0.00/0.26)
AC | 63 | BD | |
---|---|---|---|
RGB | 172 | 99 | 189 |
HSL | 289° | 40.54% | 56.47% |
HSB/HSV | 289° | 47.62% | 74.12% |
CMYK | 8.99% | 47.62% | 0.00% |
25.88% |
HEX | AC | 63 | BD |
Decimal | 172 | 99 | 189 |
Binary | 10101100 | 1100011 | 10111101 |
Octal | 254 | 143 | 275 |
Examples of css and html codes for elements with #AC63BD color. Also use rgb(172,99,189) instead hex code.
.myTextColor { color: #AC63BD; }
<p style="color:#AC63BD">This sample text font color is #AC63BD.</p>
This text font color is #AC63BD.
.myBgColor { background-color: #AC63BD; }
<div style="background-color:#AC63BD">Inner text</div>
This div background color is #AC63BD.
.myBorderColor { border: 1px solid #AC63BD; }
<div style="border:3px solid #AC63BD">Div</div>
This div border color is #AC63BD.
.myOpacity80 { color: #AC63BD; opacity: 0.8; }
<p style="color:#AC63BD;opacity:0.8;">80%</p>
Text with #AC63BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AC63BD;}
<p style="text-shadow: 3px 3px 1px #AC63BD">Text here.</p>
This text has shadow with #AC63BD color.
.textShadow {text-shadow: 3px 3px 1px #AC63BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AC63BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AC63BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AC63BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AC63BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AC63BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AC63BD; -webkit-box-shadow: 1px 1px 3px 2px #AC63BD; box-shadow: 1px 1px 3px 2px #AC63BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AC63BD; -webkit-box-shadow: 1px 1px 3px 2px #AC63BD; box-shadow:1px 1px 3px 2px #AC63BD;">
Div content here</div>
This text has color #AC63BD on black background.
This text has color #AC63BD on white background.
This text has black color on #AC63BD background.
This text has white color on #AC63BD background.