HEX: #CAAEE2
RGB: (202,174,226)
#CAAEE2 contains red, green and blue colors in about the same proportion. Web safe color of #CAAEE2 is #CC99CC (or #C9C).
#CAAEE2 color RGB value is (202,174,226).
RGB: (202,174,226) (79%,68%,89%)
R 202 of 255 = 79%
G 174 of 255 = 68%
B 226 of 255 = 89%
R + G + B ~ 79%. #CAAEE2 is quite light color.
R + G + B =
202 + 174 + 226 = 602 (100%)
R 202 of 602 ~ 33.55%
G 174 of 602 ~ 28.9%
B 226 of 602 ~ 37.54%
#CAAEE2 color CMYK value is (11,23,0,11).
CMYK: (11,23,0,11) C11M23Y0K11 (11%,23%,0%,11%) (0.11/0.23/0.00/0.11)
CA | AE | E2 | |
---|---|---|---|
RGB | 202 | 174 | 226 |
HSL | 272° | 47.27% | 78.43% |
HSB/HSV | 272° | 23.01% | 88.63% |
CMYK | 10.62% | 23.01% | 0.00% |
11.37% |
HEX | CA | AE | E2 |
Decimal | 202 | 174 | 226 |
Binary | 11001010 | 10101110 | 11100010 |
Octal | 312 | 256 | 342 |
Examples of css and html codes for elements with #CAAEE2 color. Also use rgb(202,174,226) instead hex code.
.myTextColor { color: #CAAEE2; }
<p style="color:#CAAEE2">This sample text font color is #CAAEE2.</p>
This text font color is #CAAEE2.
.myBgColor { background-color: #CAAEE2; }
<div style="background-color:#CAAEE2">Inner text</div>
This div background color is #CAAEE2.
.myBorderColor { border: 1px solid #CAAEE2; }
<div style="border:3px solid #CAAEE2">Div</div>
This div border color is #CAAEE2.
.myOpacity80 { color: #CAAEE2; opacity: 0.8; }
<p style="color:#CAAEE2;opacity:0.8;">80%</p>
Text with #CAAEE2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CAAEE2;}
<p style="text-shadow: 3px 3px 1px #CAAEE2">Text here.</p>
This text has shadow with #CAAEE2 color.
.textShadow {text-shadow: 3px 3px 1px #CAAEE2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CAAEE2, 5px 5px 20px red">Text here.</p>
This text has shadow with #CAAEE2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CAAEE2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CAAEE2, Direction=45, Strength=4)">Text</p>
This text has shadow with #CAAEE2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CAAEE2; -webkit-box-shadow: 1px 1px 3px 2px #CAAEE2; box-shadow: 1px 1px 3px 2px #CAAEE2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CAAEE2; -webkit-box-shadow: 1px 1px 3px 2px #CAAEE2; box-shadow:1px 1px 3px 2px #CAAEE2;">
Div content here</div>
This text has color #CAAEE2 on black background.
This text has color #CAAEE2 on white background.
This text has black color on #CAAEE2 background.
This text has white color on #CAAEE2 background.