HEX: #C3CBEA
RGB: (195,203,234)
#C3CBEA contains red, green and blue colors in about the same proportion. Web safe color of #C3CBEA is #CCCCFF (or #CCF).
#C3CBEA color RGB value is (195,203,234).
RGB: (195,203,234) (76%,80%,92%)
R 195 of 255 = 76%
G 203 of 255 = 80%
B 234 of 255 = 92%
R + G + B ~ 83%. #C3CBEA is quite light color.
R + G + B =
195 + 203 + 234 = 632 (100%)
R 195 of 632 ~ 30.85%
G 203 of 632 ~ 32.12%
B 234 of 632 ~ 37.03%
#C3CBEA color CMYK value is (17,13,0,8).
CMYK: (17,13,0,8) C17M13Y0K8 (17%,13%,0%,8%) (0.17/0.13/0.00/0.08)
C3 | CB | EA | |
---|---|---|---|
RGB | 195 | 203 | 234 |
HSL | 228° | 48.15% | 84.12% |
HSB/HSV | 228° | 16.67% | 91.76% |
CMYK | 16.67% | 13.25% | 0.00% |
8.24% |
HEX | C3 | CB | EA |
Decimal | 195 | 203 | 234 |
Binary | 11000011 | 11001011 | 11101010 |
Octal | 303 | 313 | 352 |
Examples of css and html codes for elements with #C3CBEA color. Also use rgb(195,203,234) instead hex code.
.myTextColor { color: #C3CBEA; }
<p style="color:#C3CBEA">This sample text font color is #C3CBEA.</p>
This text font color is #C3CBEA.
.myBgColor { background-color: #C3CBEA; }
<div style="background-color:#C3CBEA">Inner text</div>
This div background color is #C3CBEA.
.myBorderColor { border: 1px solid #C3CBEA; }
<div style="border:3px solid #C3CBEA">Div</div>
This div border color is #C3CBEA.
.myOpacity80 { color: #C3CBEA; opacity: 0.8; }
<p style="color:#C3CBEA;opacity:0.8;">80%</p>
Text with #C3CBEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C3CBEA;}
<p style="text-shadow: 3px 3px 1px #C3CBEA">Text here.</p>
This text has shadow with #C3CBEA color.
.textShadow {text-shadow: 3px 3px 1px #C3CBEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C3CBEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C3CBEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C3CBEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C3CBEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C3CBEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C3CBEA; -webkit-box-shadow: 1px 1px 3px 2px #C3CBEA; box-shadow: 1px 1px 3px 2px #C3CBEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C3CBEA; -webkit-box-shadow: 1px 1px 3px 2px #C3CBEA; box-shadow:1px 1px 3px 2px #C3CBEA;">
Div content here</div>
This text has color #C3CBEA on black background.
This text has color #C3CBEA on white background.
This text has black color on #C3CBEA background.
This text has white color on #C3CBEA background.