HEX: #C2C3EB
RGB: (194,195,235)
#C2C3EB contains red, green and blue colors in about the same proportion. Web safe color of #C2C3EB is #CCCCFF (or #CCF).
#C2C3EB color RGB value is (194,195,235).
RGB: (194,195,235) (76%,76%,92%)
R 194 of 255 = 76%
G 195 of 255 = 76%
B 235 of 255 = 92%
R + G + B ~ 81%. #C2C3EB is quite light color.
R + G + B =
194 + 195 + 235 = 624 (100%)
R 194 of 624 ~ 31.09%
G 195 of 624 ~ 31.25%
B 235 of 624 ~ 37.66%
#C2C3EB color CMYK value is (17,17,0,8).
CMYK: (17,17,0,8) C17M17Y0K8 (17%,17%,0%,8%) (0.17/0.17/0.00/0.08)
C2 | C3 | EB | |
---|---|---|---|
RGB | 194 | 195 | 235 |
HSL | 239° | 50.62% | 84.12% |
HSB/HSV | 239° | 17.45% | 92.16% |
CMYK | 17.45% | 17.02% | 0.00% |
7.84% |
HEX | C2 | C3 | EB |
Decimal | 194 | 195 | 235 |
Binary | 11000010 | 11000011 | 11101011 |
Octal | 302 | 303 | 353 |
Examples of css and html codes for elements with #C2C3EB color. Also use rgb(194,195,235) instead hex code.
.myTextColor { color: #C2C3EB; }
<p style="color:#C2C3EB">This sample text font color is #C2C3EB.</p>
This text font color is #C2C3EB.
.myBgColor { background-color: #C2C3EB; }
<div style="background-color:#C2C3EB">Inner text</div>
This div background color is #C2C3EB.
.myBorderColor { border: 1px solid #C2C3EB; }
<div style="border:3px solid #C2C3EB">Div</div>
This div border color is #C2C3EB.
.myOpacity80 { color: #C2C3EB; opacity: 0.8; }
<p style="color:#C2C3EB;opacity:0.8;">80%</p>
Text with #C2C3EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C2C3EB;}
<p style="text-shadow: 3px 3px 1px #C2C3EB">Text here.</p>
This text has shadow with #C2C3EB color.
.textShadow {text-shadow: 3px 3px 1px #C2C3EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C2C3EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C2C3EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C2C3EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C2C3EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C2C3EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C2C3EB; -webkit-box-shadow: 1px 1px 3px 2px #C2C3EB; box-shadow: 1px 1px 3px 2px #C2C3EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C2C3EB; -webkit-box-shadow: 1px 1px 3px 2px #C2C3EB; box-shadow:1px 1px 3px 2px #C2C3EB;">
Div content here</div>
This text has color #C2C3EB on black background.
This text has color #C2C3EB on white background.
This text has black color on #C2C3EB background.
This text has white color on #C2C3EB background.