HEX: #C4AADD
RGB: (196,170,221)
#C4AADD contains red, green and blue colors in about the same proportion. Web safe color of #C4AADD is #CC99CC (or #C9C).
#C4AADD color RGB value is (196,170,221).
RGB: (196,170,221) (77%,67%,87%)
R 196 of 255 = 77%
G 170 of 255 = 67%
B 221 of 255 = 87%
R + G + B ~ 77%. #C4AADD is quite light color.
R + G + B =
196 + 170 + 221 = 587 (100%)
R 196 of 587 ~ 33.39%
G 170 of 587 ~ 28.96%
B 221 of 587 ~ 37.65%
#C4AADD color CMYK value is (11,23,0,13).
CMYK: (11,23,0,13) C11M23Y0K13 (11%,23%,0%,13%) (0.11/0.23/0.00/0.13)
C4 | AA | DD | |
---|---|---|---|
RGB | 196 | 170 | 221 |
HSL | 271° | 42.86% | 76.67% |
HSB/HSV | 271° | 23.08% | 86.67% |
CMYK | 11.31% | 23.08% | 0.00% |
13.33% |
HEX | C4 | AA | DD |
Decimal | 196 | 170 | 221 |
Binary | 11000100 | 10101010 | 11011101 |
Octal | 304 | 252 | 335 |
Examples of css and html codes for elements with #C4AADD color. Also use rgb(196,170,221) instead hex code.
.myTextColor { color: #C4AADD; }
<p style="color:#C4AADD">This sample text font color is #C4AADD.</p>
This text font color is #C4AADD.
.myBgColor { background-color: #C4AADD; }
<div style="background-color:#C4AADD">Inner text</div>
This div background color is #C4AADD.
.myBorderColor { border: 1px solid #C4AADD; }
<div style="border:3px solid #C4AADD">Div</div>
This div border color is #C4AADD.
.myOpacity80 { color: #C4AADD; opacity: 0.8; }
<p style="color:#C4AADD;opacity:0.8;">80%</p>
Text with #C4AADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4AADD;}
<p style="text-shadow: 3px 3px 1px #C4AADD">Text here.</p>
This text has shadow with #C4AADD color.
.textShadow {text-shadow: 3px 3px 1px #C4AADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4AADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4AADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4AADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4AADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4AADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4AADD; -webkit-box-shadow: 1px 1px 3px 2px #C4AADD; box-shadow: 1px 1px 3px 2px #C4AADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4AADD; -webkit-box-shadow: 1px 1px 3px 2px #C4AADD; box-shadow:1px 1px 3px 2px #C4AADD;">
Div content here</div>
This text has color #C4AADD on black background.
This text has color #C4AADD on white background.
This text has black color on #C4AADD background.
This text has white color on #C4AADD background.