HEX: #C4AADF
RGB: (196,170,223)
#C4AADF contains red, green and blue colors in about the same proportion. Web safe color of #C4AADF is #CC99CC (or #C9C).
#C4AADF color RGB value is (196,170,223).
RGB: (196,170,223) (77%,67%,87%)
R 196 of 255 = 77%
G 170 of 255 = 67%
B 223 of 255 = 87%
R + G + B ~ 77%. #C4AADF is quite light color.
R + G + B =
196 + 170 + 223 = 589 (100%)
R 196 of 589 ~ 33.28%
G 170 of 589 ~ 28.86%
B 223 of 589 ~ 37.86%
#C4AADF color CMYK value is (12,24,0,13).
CMYK: (12,24,0,13) C12M24Y0K13 (12%,24%,0%,13%) (0.12/0.24/0.00/0.13)
C4 | AA | DF | |
---|---|---|---|
RGB | 196 | 170 | 223 |
HSL | 269° | 45.30% | 77.06% |
HSB/HSV | 269° | 23.77% | 87.45% |
CMYK | 12.11% | 23.77% | 0.00% |
12.55% |
HEX | C4 | AA | DF |
Decimal | 196 | 170 | 223 |
Binary | 11000100 | 10101010 | 11011111 |
Octal | 304 | 252 | 337 |
Examples of css and html codes for elements with #C4AADF color. Also use rgb(196,170,223) instead hex code.
.myTextColor { color: #C4AADF; }
<p style="color:#C4AADF">This sample text font color is #C4AADF.</p>
This text font color is #C4AADF.
.myBgColor { background-color: #C4AADF; }
<div style="background-color:#C4AADF">Inner text</div>
This div background color is #C4AADF.
.myBorderColor { border: 1px solid #C4AADF; }
<div style="border:3px solid #C4AADF">Div</div>
This div border color is #C4AADF.
.myOpacity80 { color: #C4AADF; opacity: 0.8; }
<p style="color:#C4AADF;opacity:0.8;">80%</p>
Text with #C4AADF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4AADF;}
<p style="text-shadow: 3px 3px 1px #C4AADF">Text here.</p>
This text has shadow with #C4AADF color.
.textShadow {text-shadow: 3px 3px 1px #C4AADF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4AADF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4AADF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4AADF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4AADF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4AADF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4AADF; -webkit-box-shadow: 1px 1px 3px 2px #C4AADF; box-shadow: 1px 1px 3px 2px #C4AADF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4AADF; -webkit-box-shadow: 1px 1px 3px 2px #C4AADF; box-shadow:1px 1px 3px 2px #C4AADF;">
Div content here</div>
This text has color #C4AADF on black background.
This text has color #C4AADF on white background.
This text has black color on #C4AADF background.
This text has white color on #C4AADF background.