HEX: #A958DC
RGB: (169,88,220)
#A958DC contains mainly red and blue colors. Web safe color of #A958DC is #9966CC (or #96C).
#A958DC color RGB value is (169,88,220).
RGB: (169,88,220) (66%,35%,86%)
R 169 of 255 = 66%
G 88 of 255 = 35%
B 220 of 255 = 86%
R + G + B ~ 62%. #A958DC is quite light color.
R + G + B =
169 + 88 + 220 = 477 (100%)
R 169 of 477 ~ 35.43%
G 88 of 477 ~ 18.45%
B 220 of 477 ~ 46.12%
#A958DC color CMYK value is (23,60,0,14).
CMYK: (23,60,0,14) C23M60Y0K14 (23%,60%,0%,14%) (0.23/0.60/0.00/0.14)
A9 | 58 | DC | |
---|---|---|---|
RGB | 169 | 88 | 220 |
HSL | 277° | 65.35% | 60.39% |
HSB/HSV | 277° | 60.00% | 86.27% |
CMYK | 23.18% | 60.00% | 0.00% |
13.73% |
HEX | A9 | 58 | DC |
Decimal | 169 | 88 | 220 |
Binary | 10101001 | 1011000 | 11011100 |
Octal | 251 | 130 | 334 |
Examples of css and html codes for elements with #A958DC color. Also use rgb(169,88,220) instead hex code.
.myTextColor { color: #A958DC; }
<p style="color:#A958DC">This sample text font color is #A958DC.</p>
This text font color is #A958DC.
.myBgColor { background-color: #A958DC; }
<div style="background-color:#A958DC">Inner text</div>
This div background color is #A958DC.
.myBorderColor { border: 1px solid #A958DC; }
<div style="border:3px solid #A958DC">Div</div>
This div border color is #A958DC.
.myOpacity80 { color: #A958DC; opacity: 0.8; }
<p style="color:#A958DC;opacity:0.8;">80%</p>
Text with #A958DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A958DC;}
<p style="text-shadow: 3px 3px 1px #A958DC">Text here.</p>
This text has shadow with #A958DC color.
.textShadow {text-shadow: 3px 3px 1px #A958DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A958DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A958DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A958DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A958DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A958DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A958DC; -webkit-box-shadow: 1px 1px 3px 2px #A958DC; box-shadow: 1px 1px 3px 2px #A958DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A958DC; -webkit-box-shadow: 1px 1px 3px 2px #A958DC; box-shadow:1px 1px 3px 2px #A958DC;">
Div content here</div>
This text has color #A958DC on black background.
This text has color #A958DC on white background.
This text has black color on #A958DC background.
This text has white color on #A958DC background.