HEX: #CA88EE
RGB: (202,136,238)
#CA88EE contains mainly red and blue colors. Web safe color of #CA88EE is #CC99FF (or #C9F).
#CA88EE color RGB value is (202,136,238).
RGB: (202,136,238) (79%,53%,93%)
R 202 of 255 = 79%
G 136 of 255 = 53%
B 238 of 255 = 93%
R + G + B ~ 75%. #CA88EE is quite light color.
R + G + B =
202 + 136 + 238 = 576 (100%)
R 202 of 576 ~ 35.07%
G 136 of 576 ~ 23.61%
B 238 of 576 ~ 41.32%
#CA88EE color CMYK value is (15,43,0,7).
CMYK: (15,43,0,7) C15M43Y0K7 (15%,43%,0%,7%) (0.15/0.43/0.00/0.07)
CA | 88 | EE | |
---|---|---|---|
RGB | 202 | 136 | 238 |
HSL | 279° | 75.00% | 73.33% |
HSB/HSV | 279° | 42.86% | 93.33% |
CMYK | 15.13% | 42.86% | 0.00% |
6.67% |
HEX | CA | 88 | EE |
Decimal | 202 | 136 | 238 |
Binary | 11001010 | 10001000 | 11101110 |
Octal | 312 | 210 | 356 |
Examples of css and html codes for elements with #CA88EE color. Also use rgb(202,136,238) instead hex code.
.myTextColor { color: #CA88EE; }
<p style="color:#CA88EE">This sample text font color is #CA88EE.</p>
This text font color is #CA88EE.
.myBgColor { background-color: #CA88EE; }
<div style="background-color:#CA88EE">Inner text</div>
This div background color is #CA88EE.
.myBorderColor { border: 1px solid #CA88EE; }
<div style="border:3px solid #CA88EE">Div</div>
This div border color is #CA88EE.
.myOpacity80 { color: #CA88EE; opacity: 0.8; }
<p style="color:#CA88EE;opacity:0.8;">80%</p>
Text with #CA88EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CA88EE;}
<p style="text-shadow: 3px 3px 1px #CA88EE">Text here.</p>
This text has shadow with #CA88EE color.
.textShadow {text-shadow: 3px 3px 1px #CA88EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CA88EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #CA88EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CA88EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CA88EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #CA88EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CA88EE; -webkit-box-shadow: 1px 1px 3px 2px #CA88EE; box-shadow: 1px 1px 3px 2px #CA88EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CA88EE; -webkit-box-shadow: 1px 1px 3px 2px #CA88EE; box-shadow:1px 1px 3px 2px #CA88EE;">
Div content here</div>
This text has color #CA88EE on black background.
This text has color #CA88EE on white background.
This text has black color on #CA88EE background.
This text has white color on #CA88EE background.