HEX: #C5AFEA
RGB: (197,175,234)
#C5AFEA contains red, green and blue colors in about the same proportion. Web safe color of #C5AFEA is #CC99FF (or #C9F).
#C5AFEA color RGB value is (197,175,234).
RGB: (197,175,234) (77%,69%,92%)
R 197 of 255 = 77%
G 175 of 255 = 69%
B 234 of 255 = 92%
R + G + B ~ 79%. #C5AFEA is quite light color.
R + G + B =
197 + 175 + 234 = 606 (100%)
R 197 of 606 ~ 32.51%
G 175 of 606 ~ 28.88%
B 234 of 606 ~ 38.61%
#C5AFEA color CMYK value is (16,25,0,8).
CMYK: (16,25,0,8) C16M25Y0K8 (16%,25%,0%,8%) (0.16/0.25/0.00/0.08)
C5 | AF | EA | |
---|---|---|---|
RGB | 197 | 175 | 234 |
HSL | 262° | 58.42% | 80.20% |
HSB/HSV | 262° | 25.21% | 91.76% |
CMYK | 15.81% | 25.21% | 0.00% |
8.24% |
HEX | C5 | AF | EA |
Decimal | 197 | 175 | 234 |
Binary | 11000101 | 10101111 | 11101010 |
Octal | 305 | 257 | 352 |
Examples of css and html codes for elements with #C5AFEA color. Also use rgb(197,175,234) instead hex code.
.myTextColor { color: #C5AFEA; }
<p style="color:#C5AFEA">This sample text font color is #C5AFEA.</p>
This text font color is #C5AFEA.
.myBgColor { background-color: #C5AFEA; }
<div style="background-color:#C5AFEA">Inner text</div>
This div background color is #C5AFEA.
.myBorderColor { border: 1px solid #C5AFEA; }
<div style="border:3px solid #C5AFEA">Div</div>
This div border color is #C5AFEA.
.myOpacity80 { color: #C5AFEA; opacity: 0.8; }
<p style="color:#C5AFEA;opacity:0.8;">80%</p>
Text with #C5AFEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5AFEA;}
<p style="text-shadow: 3px 3px 1px #C5AFEA">Text here.</p>
This text has shadow with #C5AFEA color.
.textShadow {text-shadow: 3px 3px 1px #C5AFEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5AFEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5AFEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5AFEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5AFEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5AFEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5AFEA; -webkit-box-shadow: 1px 1px 3px 2px #C5AFEA; box-shadow: 1px 1px 3px 2px #C5AFEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5AFEA; -webkit-box-shadow: 1px 1px 3px 2px #C5AFEA; box-shadow:1px 1px 3px 2px #C5AFEA;">
Div content here</div>
This text has color #C5AFEA on black background.
This text has color #C5AFEA on white background.
This text has black color on #C5AFEA background.
This text has white color on #C5AFEA background.