HEX: #C48AAD
RGB: (196,138,173)
#C48AAD contains red, green and blue colors in about the same proportion. Web safe color of #C48AAD is #CC9999 (or #C99).
#C48AAD color RGB value is (196,138,173).
RGB: (196,138,173) (77%,54%,68%)
R 196 of 255 = 77%
G 138 of 255 = 54%
B 173 of 255 = 68%
R + G + B ~ 66%. #C48AAD is quite light color.
R + G + B =
196 + 138 + 173 = 507 (100%)
R 196 of 507 ~ 38.66%
G 138 of 507 ~ 27.22%
B 173 of 507 ~ 34.12%
#C48AAD color CMYK value is (0,30,12,23).
CMYK: (0,30,12,23) C0M30Y12K23 (0%,30%,12%,23%) (0.00/0.30/0.12/0.23)
C4 | 8A | AD | |
---|---|---|---|
RGB | 196 | 138 | 173 |
HSL | 324° | 32.95% | 65.49% |
HSB/HSV | 324° | 29.59% | 76.86% |
CMYK | 0.00% | 29.59% | 11.73% |
23.14% |
HEX | C4 | 8A | AD |
Decimal | 196 | 138 | 173 |
Binary | 11000100 | 10001010 | 10101101 |
Octal | 304 | 212 | 255 |
Examples of css and html codes for elements with #C48AAD color. Also use rgb(196,138,173) instead hex code.
.myTextColor { color: #C48AAD; }
<p style="color:#C48AAD">This sample text font color is #C48AAD.</p>
This text font color is #C48AAD.
.myBgColor { background-color: #C48AAD; }
<div style="background-color:#C48AAD">Inner text</div>
This div background color is #C48AAD.
.myBorderColor { border: 1px solid #C48AAD; }
<div style="border:3px solid #C48AAD">Div</div>
This div border color is #C48AAD.
.myOpacity80 { color: #C48AAD; opacity: 0.8; }
<p style="color:#C48AAD;opacity:0.8;">80%</p>
Text with #C48AAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C48AAD;}
<p style="text-shadow: 3px 3px 1px #C48AAD">Text here.</p>
This text has shadow with #C48AAD color.
.textShadow {text-shadow: 3px 3px 1px #C48AAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C48AAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C48AAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C48AAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C48AAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C48AAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C48AAD; -webkit-box-shadow: 1px 1px 3px 2px #C48AAD; box-shadow: 1px 1px 3px 2px #C48AAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C48AAD; -webkit-box-shadow: 1px 1px 3px 2px #C48AAD; box-shadow:1px 1px 3px 2px #C48AAD;">
Div content here</div>
This text has color #C48AAD on black background.
This text has color #C48AAD on white background.
This text has black color on #C48AAD background.
This text has white color on #C48AAD background.