HEX: #CCAEED
RGB: (204,174,237)
#CCAEED contains mainly red and blue colors. Web safe color of #CCAEED is #CC99FF (or #C9F).
#CCAEED color RGB value is (204,174,237).
RGB: (204,174,237) (80%,68%,93%)
R 204 of 255 = 80%
G 174 of 255 = 68%
B 237 of 255 = 93%
R + G + B ~ 80%. #CCAEED is quite light color.
R + G + B =
204 + 174 + 237 = 615 (100%)
R 204 of 615 ~ 33.17%
G 174 of 615 ~ 28.29%
B 237 of 615 ~ 38.54%
#CCAEED color CMYK value is (14,27,0,7).
CMYK: (14,27,0,7) C14M27Y0K7 (14%,27%,0%,7%) (0.14/0.27/0.00/0.07)
CC | AE | ED | |
---|---|---|---|
RGB | 204 | 174 | 237 |
HSL | 269° | 63.64% | 80.59% |
HSB/HSV | 269° | 26.58% | 92.94% |
CMYK | 13.92% | 26.58% | 0.00% |
7.06% |
HEX | CC | AE | ED |
Decimal | 204 | 174 | 237 |
Binary | 11001100 | 10101110 | 11101101 |
Octal | 314 | 256 | 355 |
Examples of css and html codes for elements with #CCAEED color. Also use rgb(204,174,237) instead hex code.
.myTextColor { color: #CCAEED; }
<p style="color:#CCAEED">This sample text font color is #CCAEED.</p>
This text font color is #CCAEED.
.myBgColor { background-color: #CCAEED; }
<div style="background-color:#CCAEED">Inner text</div>
This div background color is #CCAEED.
.myBorderColor { border: 1px solid #CCAEED; }
<div style="border:3px solid #CCAEED">Div</div>
This div border color is #CCAEED.
.myOpacity80 { color: #CCAEED; opacity: 0.8; }
<p style="color:#CCAEED;opacity:0.8;">80%</p>
Text with #CCAEED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCAEED;}
<p style="text-shadow: 3px 3px 1px #CCAEED">Text here.</p>
This text has shadow with #CCAEED color.
.textShadow {text-shadow: 3px 3px 1px #CCAEED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCAEED, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCAEED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCAEED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCAEED, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCAEED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCAEED; -webkit-box-shadow: 1px 1px 3px 2px #CCAEED; box-shadow: 1px 1px 3px 2px #CCAEED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCAEED; -webkit-box-shadow: 1px 1px 3px 2px #CCAEED; box-shadow:1px 1px 3px 2px #CCAEED;">
Div content here</div>
This text has color #CCAEED on black background.
This text has color #CCAEED on white background.
This text has black color on #CCAEED background.
This text has white color on #CCAEED background.