HEX: #C894DC
RGB: (200,148,220)
#C894DC contains mainly red and blue colors. Web safe color of #C894DC is #CC99CC (or #C9C).
#C894DC color RGB value is (200,148,220).
RGB: (200,148,220) (78%,58%,86%)
R 200 of 255 = 78%
G 148 of 255 = 58%
B 220 of 255 = 86%
R + G + B ~ 74%. #C894DC is quite light color.
R + G + B =
200 + 148 + 220 = 568 (100%)
R 200 of 568 ~ 35.21%
G 148 of 568 ~ 26.06%
B 220 of 568 ~ 38.73%
#C894DC color CMYK value is (9,33,0,14).
CMYK: (9,33,0,14) C9M33Y0K14 (9%,33%,0%,14%) (0.09/0.33/0.00/0.14)
C8 | 94 | DC | |
---|---|---|---|
RGB | 200 | 148 | 220 |
HSL | 283° | 50.70% | 72.16% |
HSB/HSV | 283° | 32.73% | 86.27% |
CMYK | 9.09% | 32.73% | 0.00% |
13.73% |
HEX | C8 | 94 | DC |
Decimal | 200 | 148 | 220 |
Binary | 11001000 | 10010100 | 11011100 |
Octal | 310 | 224 | 334 |
Examples of css and html codes for elements with #C894DC color. Also use rgb(200,148,220) instead hex code.
.myTextColor { color: #C894DC; }
<p style="color:#C894DC">This sample text font color is #C894DC.</p>
This text font color is #C894DC.
.myBgColor { background-color: #C894DC; }
<div style="background-color:#C894DC">Inner text</div>
This div background color is #C894DC.
.myBorderColor { border: 1px solid #C894DC; }
<div style="border:3px solid #C894DC">Div</div>
This div border color is #C894DC.
.myOpacity80 { color: #C894DC; opacity: 0.8; }
<p style="color:#C894DC;opacity:0.8;">80%</p>
Text with #C894DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C894DC;}
<p style="text-shadow: 3px 3px 1px #C894DC">Text here.</p>
This text has shadow with #C894DC color.
.textShadow {text-shadow: 3px 3px 1px #C894DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C894DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C894DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C894DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C894DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C894DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C894DC; -webkit-box-shadow: 1px 1px 3px 2px #C894DC; box-shadow: 1px 1px 3px 2px #C894DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C894DC; -webkit-box-shadow: 1px 1px 3px 2px #C894DC; box-shadow:1px 1px 3px 2px #C894DC;">
Div content here</div>
This text has color #C894DC on black background.
This text has color #C894DC on white background.
This text has black color on #C894DC background.
This text has white color on #C894DC background.