HEX: #C2BEEA
RGB: (194,190,234)
#C2BEEA contains red, green and blue colors in about the same proportion. Web safe color of #C2BEEA is #CCCCFF (or #CCF).
#C2BEEA color RGB value is (194,190,234).
RGB: (194,190,234) (76%,75%,92%)
R 194 of 255 = 76%
G 190 of 255 = 75%
B 234 of 255 = 92%
R + G + B ~ 81%. #C2BEEA is quite light color.
R + G + B =
194 + 190 + 234 = 618 (100%)
R 194 of 618 ~ 31.39%
G 190 of 618 ~ 30.74%
B 234 of 618 ~ 37.86%
#C2BEEA color CMYK value is (17,19,0,8).
CMYK: (17,19,0,8) C17M19Y0K8 (17%,19%,0%,8%) (0.17/0.19/0.00/0.08)
C2 | BE | EA | |
---|---|---|---|
RGB | 194 | 190 | 234 |
HSL | 245° | 51.16% | 83.14% |
HSB/HSV | 245° | 18.80% | 91.76% |
CMYK | 17.09% | 18.80% | 0.00% |
8.24% |
HEX | C2 | BE | EA |
Decimal | 194 | 190 | 234 |
Binary | 11000010 | 10111110 | 11101010 |
Octal | 302 | 276 | 352 |
Examples of css and html codes for elements with #C2BEEA color. Also use rgb(194,190,234) instead hex code.
.myTextColor { color: #C2BEEA; }
<p style="color:#C2BEEA">This sample text font color is #C2BEEA.</p>
This text font color is #C2BEEA.
.myBgColor { background-color: #C2BEEA; }
<div style="background-color:#C2BEEA">Inner text</div>
This div background color is #C2BEEA.
.myBorderColor { border: 1px solid #C2BEEA; }
<div style="border:3px solid #C2BEEA">Div</div>
This div border color is #C2BEEA.
.myOpacity80 { color: #C2BEEA; opacity: 0.8; }
<p style="color:#C2BEEA;opacity:0.8;">80%</p>
Text with #C2BEEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C2BEEA;}
<p style="text-shadow: 3px 3px 1px #C2BEEA">Text here.</p>
This text has shadow with #C2BEEA color.
.textShadow {text-shadow: 3px 3px 1px #C2BEEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C2BEEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C2BEEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C2BEEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C2BEEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C2BEEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C2BEEA; -webkit-box-shadow: 1px 1px 3px 2px #C2BEEA; box-shadow: 1px 1px 3px 2px #C2BEEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C2BEEA; -webkit-box-shadow: 1px 1px 3px 2px #C2BEEA; box-shadow:1px 1px 3px 2px #C2BEEA;">
Div content here</div>
This text has color #C2BEEA on black background.
This text has color #C2BEEA on white background.
This text has black color on #C2BEEA background.
This text has white color on #C2BEEA background.