HEX: #C2BAEF
RGB: (194,186,239)
#C2BAEF contains red, green and blue colors in about the same proportion. Web safe color of #C2BAEF is #CCCCFF (or #CCF).
#C2BAEF color RGB value is (194,186,239).
RGB: (194,186,239) (76%,73%,94%)
R 194 of 255 = 76%
G 186 of 255 = 73%
B 239 of 255 = 94%
R + G + B ~ 81%. #C2BAEF is quite light color.
R + G + B =
194 + 186 + 239 = 619 (100%)
R 194 of 619 ~ 31.34%
G 186 of 619 ~ 30.05%
B 239 of 619 ~ 38.61%
#C2BAEF color CMYK value is (19,22,0,6).
CMYK: (19,22,0,6) C19M22Y0K6 (19%,22%,0%,6%) (0.19/0.22/0.00/0.06)
C2 | BA | EF | |
---|---|---|---|
RGB | 194 | 186 | 239 |
HSL | 249° | 62.35% | 83.33% |
HSB/HSV | 249° | 22.18% | 93.73% |
CMYK | 18.83% | 22.18% | 0.00% |
6.27% |
HEX | C2 | BA | EF |
Decimal | 194 | 186 | 239 |
Binary | 11000010 | 10111010 | 11101111 |
Octal | 302 | 272 | 357 |
Examples of css and html codes for elements with #C2BAEF color. Also use rgb(194,186,239) instead hex code.
.myTextColor { color: #C2BAEF; }
<p style="color:#C2BAEF">This sample text font color is #C2BAEF.</p>
This text font color is #C2BAEF.
.myBgColor { background-color: #C2BAEF; }
<div style="background-color:#C2BAEF">Inner text</div>
This div background color is #C2BAEF.
.myBorderColor { border: 1px solid #C2BAEF; }
<div style="border:3px solid #C2BAEF">Div</div>
This div border color is #C2BAEF.
.myOpacity80 { color: #C2BAEF; opacity: 0.8; }
<p style="color:#C2BAEF;opacity:0.8;">80%</p>
Text with #C2BAEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C2BAEF;}
<p style="text-shadow: 3px 3px 1px #C2BAEF">Text here.</p>
This text has shadow with #C2BAEF color.
.textShadow {text-shadow: 3px 3px 1px #C2BAEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C2BAEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C2BAEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C2BAEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C2BAEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C2BAEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C2BAEF; -webkit-box-shadow: 1px 1px 3px 2px #C2BAEF; box-shadow: 1px 1px 3px 2px #C2BAEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C2BAEF; -webkit-box-shadow: 1px 1px 3px 2px #C2BAEF; box-shadow:1px 1px 3px 2px #C2BAEF;">
Div content here</div>
This text has color #C2BAEF on black background.
This text has color #C2BAEF on white background.
This text has black color on #C2BAEF background.
This text has white color on #C2BAEF background.