HEX: #C88FDA
RGB: (200,143,218)
#C88FDA contains mainly red and blue colors. Web safe color of #C88FDA is #CC99CC (or #C9C).
#C88FDA color RGB value is (200,143,218).
RGB: (200,143,218) (78%,56%,85%)
R 200 of 255 = 78%
G 143 of 255 = 56%
B 218 of 255 = 85%
R + G + B ~ 73%. #C88FDA is quite light color.
R + G + B =
200 + 143 + 218 = 561 (100%)
R 200 of 561 ~ 35.65%
G 143 of 561 ~ 25.49%
B 218 of 561 ~ 38.86%
#C88FDA color CMYK value is (8,34,0,15).
CMYK: (8,34,0,15) C8M34Y0K15 (8%,34%,0%,15%) (0.08/0.34/0.00/0.15)
C8 | 8F | DA | |
---|---|---|---|
RGB | 200 | 143 | 218 |
HSL | 286° | 50.34% | 70.78% |
HSB/HSV | 286° | 34.40% | 85.49% |
CMYK | 8.26% | 34.40% | 0.00% |
14.51% |
HEX | C8 | 8F | DA |
Decimal | 200 | 143 | 218 |
Binary | 11001000 | 10001111 | 11011010 |
Octal | 310 | 217 | 332 |
Examples of css and html codes for elements with #C88FDA color. Also use rgb(200,143,218) instead hex code.
.myTextColor { color: #C88FDA; }
<p style="color:#C88FDA">This sample text font color is #C88FDA.</p>
This text font color is #C88FDA.
.myBgColor { background-color: #C88FDA; }
<div style="background-color:#C88FDA">Inner text</div>
This div background color is #C88FDA.
.myBorderColor { border: 1px solid #C88FDA; }
<div style="border:3px solid #C88FDA">Div</div>
This div border color is #C88FDA.
.myOpacity80 { color: #C88FDA; opacity: 0.8; }
<p style="color:#C88FDA;opacity:0.8;">80%</p>
Text with #C88FDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C88FDA;}
<p style="text-shadow: 3px 3px 1px #C88FDA">Text here.</p>
This text has shadow with #C88FDA color.
.textShadow {text-shadow: 3px 3px 1px #C88FDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C88FDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C88FDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C88FDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C88FDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C88FDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C88FDA; -webkit-box-shadow: 1px 1px 3px 2px #C88FDA; box-shadow: 1px 1px 3px 2px #C88FDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C88FDA; -webkit-box-shadow: 1px 1px 3px 2px #C88FDA; box-shadow:1px 1px 3px 2px #C88FDA;">
Div content here</div>
This text has color #C88FDA on black background.
This text has color #C88FDA on white background.
This text has black color on #C88FDA background.
This text has white color on #C88FDA background.