HEX: #A48CCC
RGB: (164,140,204)
#A48CCC contains mainly red and blue colors. Web safe color of #A48CCC is #9999CC (or #99C).
#A48CCC color RGB value is (164,140,204).
RGB: (164,140,204) (64%,55%,80%)
R 164 of 255 = 64%
G 140 of 255 = 55%
B 204 of 255 = 80%
R + G + B ~ 66%. #A48CCC is quite light color.
R + G + B =
164 + 140 + 204 = 508 (100%)
R 164 of 508 ~ 32.28%
G 140 of 508 ~ 27.56%
B 204 of 508 ~ 40.16%
#A48CCC color CMYK value is (20,31,0,20).
CMYK: (20,31,0,20) C20M31Y0K20 (20%,31%,0%,20%) (0.20/0.31/0.00/0.20)
A4 | 8C | CC | |
---|---|---|---|
RGB | 164 | 140 | 204 |
HSL | 263° | 38.55% | 67.45% |
HSB/HSV | 263° | 31.37% | 80.00% |
CMYK | 19.61% | 31.37% | 0.00% |
20.00% |
HEX | A4 | 8C | CC |
Decimal | 164 | 140 | 204 |
Binary | 10100100 | 10001100 | 11001100 |
Octal | 244 | 214 | 314 |
Examples of css and html codes for elements with #A48CCC color. Also use rgb(164,140,204) instead hex code.
.myTextColor { color: #A48CCC; }
<p style="color:#A48CCC">This sample text font color is #A48CCC.</p>
This text font color is #A48CCC.
.myBgColor { background-color: #A48CCC; }
<div style="background-color:#A48CCC">Inner text</div>
This div background color is #A48CCC.
.myBorderColor { border: 1px solid #A48CCC; }
<div style="border:3px solid #A48CCC">Div</div>
This div border color is #A48CCC.
.myOpacity80 { color: #A48CCC; opacity: 0.8; }
<p style="color:#A48CCC;opacity:0.8;">80%</p>
Text with #A48CCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A48CCC;}
<p style="text-shadow: 3px 3px 1px #A48CCC">Text here.</p>
This text has shadow with #A48CCC color.
.textShadow {text-shadow: 3px 3px 1px #A48CCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A48CCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #A48CCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A48CCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A48CCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #A48CCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A48CCC; -webkit-box-shadow: 1px 1px 3px 2px #A48CCC; box-shadow: 1px 1px 3px 2px #A48CCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A48CCC; -webkit-box-shadow: 1px 1px 3px 2px #A48CCC; box-shadow:1px 1px 3px 2px #A48CCC;">
Div content here</div>
This text has color #A48CCC on black background.
This text has color #A48CCC on white background.
This text has black color on #A48CCC background.
This text has white color on #A48CCC background.