HEX: #C5C7FA
RGB: (197,199,250)
#C5C7FA contains red, green and blue colors in about the same proportion. Web safe color of #C5C7FA is #CCCCFF (or #CCF).
#C5C7FA color RGB value is (197,199,250).
RGB: (197,199,250) (77%,78%,98%)
R 197 of 255 = 77%
G 199 of 255 = 78%
B 250 of 255 = 98%
R + G + B ~ 84%. #C5C7FA is quite light color.
R + G + B =
197 + 199 + 250 = 646 (100%)
R 197 of 646 ~ 30.5%
G 199 of 646 ~ 30.8%
B 250 of 646 ~ 38.7%
#C5C7FA color CMYK value is (21,20,0,2).
CMYK: (21,20,0,2) C21M20Y0K2 (21%,20%,0%,2%) (0.21/0.20/0.00/0.02)
C5 | C7 | FA | |
---|---|---|---|
RGB | 197 | 199 | 250 |
HSL | 238° | 84.13% | 87.65% |
HSB/HSV | 238° | 21.20% | 98.04% |
CMYK | 21.20% | 20.40% | 0.00% |
1.96% |
HEX | C5 | C7 | FA |
Decimal | 197 | 199 | 250 |
Binary | 11000101 | 11000111 | 11111010 |
Octal | 305 | 307 | 372 |
Examples of css and html codes for elements with #C5C7FA color. Also use rgb(197,199,250) instead hex code.
.myTextColor { color: #C5C7FA; }
<p style="color:#C5C7FA">This sample text font color is #C5C7FA.</p>
This text font color is #C5C7FA.
.myBgColor { background-color: #C5C7FA; }
<div style="background-color:#C5C7FA">Inner text</div>
This div background color is #C5C7FA.
.myBorderColor { border: 1px solid #C5C7FA; }
<div style="border:3px solid #C5C7FA">Div</div>
This div border color is #C5C7FA.
.myOpacity80 { color: #C5C7FA; opacity: 0.8; }
<p style="color:#C5C7FA;opacity:0.8;">80%</p>
Text with #C5C7FA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5C7FA;}
<p style="text-shadow: 3px 3px 1px #C5C7FA">Text here.</p>
This text has shadow with #C5C7FA color.
.textShadow {text-shadow: 3px 3px 1px #C5C7FA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5C7FA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5C7FA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5C7FA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5C7FA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5C7FA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5C7FA; -webkit-box-shadow: 1px 1px 3px 2px #C5C7FA; box-shadow: 1px 1px 3px 2px #C5C7FA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5C7FA; -webkit-box-shadow: 1px 1px 3px 2px #C5C7FA; box-shadow:1px 1px 3px 2px #C5C7FA;">
Div content here</div>
This text has color #C5C7FA on black background.
This text has color #C5C7FA on white background.
This text has black color on #C5C7FA background.
This text has white color on #C5C7FA background.