HEX: #C8AEDA
RGB: (200,174,218)
#C8AEDA contains red, green and blue colors in about the same proportion. Web safe color of #C8AEDA is #CC99CC (or #C9C).
#C8AEDA color RGB value is (200,174,218).
RGB: (200,174,218) (78%,68%,85%)
R 200 of 255 = 78%
G 174 of 255 = 68%
B 218 of 255 = 85%
R + G + B ~ 77%. #C8AEDA is quite light color.
R + G + B =
200 + 174 + 218 = 592 (100%)
R 200 of 592 ~ 33.78%
G 174 of 592 ~ 29.39%
B 218 of 592 ~ 36.82%
#C8AEDA color CMYK value is (8,20,0,15).
CMYK: (8,20,0,15) C8M20Y0K15 (8%,20%,0%,15%) (0.08/0.20/0.00/0.15)
C8 | AE | DA | |
---|---|---|---|
RGB | 200 | 174 | 218 |
HSL | 275° | 37.29% | 76.86% |
HSB/HSV | 275° | 20.18% | 85.49% |
CMYK | 8.26% | 20.18% | 0.00% |
14.51% |
HEX | C8 | AE | DA |
Decimal | 200 | 174 | 218 |
Binary | 11001000 | 10101110 | 11011010 |
Octal | 310 | 256 | 332 |
Examples of css and html codes for elements with #C8AEDA color. Also use rgb(200,174,218) instead hex code.
.myTextColor { color: #C8AEDA; }
<p style="color:#C8AEDA">This sample text font color is #C8AEDA.</p>
This text font color is #C8AEDA.
.myBgColor { background-color: #C8AEDA; }
<div style="background-color:#C8AEDA">Inner text</div>
This div background color is #C8AEDA.
.myBorderColor { border: 1px solid #C8AEDA; }
<div style="border:3px solid #C8AEDA">Div</div>
This div border color is #C8AEDA.
.myOpacity80 { color: #C8AEDA; opacity: 0.8; }
<p style="color:#C8AEDA;opacity:0.8;">80%</p>
Text with #C8AEDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C8AEDA;}
<p style="text-shadow: 3px 3px 1px #C8AEDA">Text here.</p>
This text has shadow with #C8AEDA color.
.textShadow {text-shadow: 3px 3px 1px #C8AEDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C8AEDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C8AEDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C8AEDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C8AEDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C8AEDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C8AEDA; -webkit-box-shadow: 1px 1px 3px 2px #C8AEDA; box-shadow: 1px 1px 3px 2px #C8AEDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C8AEDA; -webkit-box-shadow: 1px 1px 3px 2px #C8AEDA; box-shadow:1px 1px 3px 2px #C8AEDA;">
Div content here</div>
This text has color #C8AEDA on black background.
This text has color #C8AEDA on white background.
This text has black color on #C8AEDA background.
This text has white color on #C8AEDA background.