HEX: #A48FD5
RGB: (164,143,213)
#A48FD5 contains mainly red and blue colors. Web safe color of #A48FD5 is #9999CC (or #99C).
#A48FD5 color RGB value is (164,143,213).
RGB: (164,143,213) (64%,56%,84%)
R 164 of 255 = 64%
G 143 of 255 = 56%
B 213 of 255 = 84%
R + G + B ~ 68%. #A48FD5 is quite light color.
R + G + B =
164 + 143 + 213 = 520 (100%)
R 164 of 520 ~ 31.54%
G 143 of 520 ~ 27.5%
B 213 of 520 ~ 40.96%
#A48FD5 color CMYK value is (23,33,0,16).
CMYK: (23,33,0,16) C23M33Y0K16 (23%,33%,0%,16%) (0.23/0.33/0.00/0.16)
A4 | 8F | D5 | |
---|---|---|---|
RGB | 164 | 143 | 213 |
HSL | 258° | 45.45% | 69.80% |
HSB/HSV | 258° | 32.86% | 83.53% |
CMYK | 23.00% | 32.86% | 0.00% |
16.47% |
HEX | A4 | 8F | D5 |
Decimal | 164 | 143 | 213 |
Binary | 10100100 | 10001111 | 11010101 |
Octal | 244 | 217 | 325 |
Examples of css and html codes for elements with #A48FD5 color. Also use rgb(164,143,213) instead hex code.
.myTextColor { color: #A48FD5; }
<p style="color:#A48FD5">This sample text font color is #A48FD5.</p>
This text font color is #A48FD5.
.myBgColor { background-color: #A48FD5; }
<div style="background-color:#A48FD5">Inner text</div>
This div background color is #A48FD5.
.myBorderColor { border: 1px solid #A48FD5; }
<div style="border:3px solid #A48FD5">Div</div>
This div border color is #A48FD5.
.myOpacity80 { color: #A48FD5; opacity: 0.8; }
<p style="color:#A48FD5;opacity:0.8;">80%</p>
Text with #A48FD5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A48FD5;}
<p style="text-shadow: 3px 3px 1px #A48FD5">Text here.</p>
This text has shadow with #A48FD5 color.
.textShadow {text-shadow: 3px 3px 1px #A48FD5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A48FD5, 5px 5px 20px red">Text here.</p>
This text has shadow with #A48FD5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A48FD5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A48FD5, Direction=45, Strength=4)">Text</p>
This text has shadow with #A48FD5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A48FD5; -webkit-box-shadow: 1px 1px 3px 2px #A48FD5; box-shadow: 1px 1px 3px 2px #A48FD5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A48FD5; -webkit-box-shadow: 1px 1px 3px 2px #A48FD5; box-shadow:1px 1px 3px 2px #A48FD5;">
Div content here</div>
This text has color #A48FD5 on black background.
This text has color #A48FD5 on white background.
This text has black color on #A48FD5 background.
This text has white color on #A48FD5 background.