HEX: #C295CB
RGB: (194,149,203)
#C295CB contains red, green and blue colors in about the same proportion. Web safe color of #C295CB is #CC99CC (or #C9C).
#C295CB color RGB value is (194,149,203).
RGB: (194,149,203) (76%,58%,80%)
R 194 of 255 = 76%
G 149 of 255 = 58%
B 203 of 255 = 80%
R + G + B ~ 71%. #C295CB is quite light color.
R + G + B =
194 + 149 + 203 = 546 (100%)
R 194 of 546 ~ 35.53%
G 149 of 546 ~ 27.29%
B 203 of 546 ~ 37.18%
#C295CB color CMYK value is (4,27,0,20).
CMYK: (4,27,0,20) C4M27Y0K20 (4%,27%,0%,20%) (0.04/0.27/0.00/0.20)
C2 | 95 | CB | |
---|---|---|---|
RGB | 194 | 149 | 203 |
HSL | 290° | 34.18% | 69.02% |
HSB/HSV | 290° | 26.60% | 79.61% |
CMYK | 4.43% | 26.60% | 0.00% |
20.39% |
HEX | C2 | 95 | CB |
Decimal | 194 | 149 | 203 |
Binary | 11000010 | 10010101 | 11001011 |
Octal | 302 | 225 | 313 |
Examples of css and html codes for elements with #C295CB color. Also use rgb(194,149,203) instead hex code.
.myTextColor { color: #C295CB; }
<p style="color:#C295CB">This sample text font color is #C295CB.</p>
This text font color is #C295CB.
.myBgColor { background-color: #C295CB; }
<div style="background-color:#C295CB">Inner text</div>
This div background color is #C295CB.
.myBorderColor { border: 1px solid #C295CB; }
<div style="border:3px solid #C295CB">Div</div>
This div border color is #C295CB.
.myOpacity80 { color: #C295CB; opacity: 0.8; }
<p style="color:#C295CB;opacity:0.8;">80%</p>
Text with #C295CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C295CB;}
<p style="text-shadow: 3px 3px 1px #C295CB">Text here.</p>
This text has shadow with #C295CB color.
.textShadow {text-shadow: 3px 3px 1px #C295CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C295CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C295CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C295CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C295CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C295CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C295CB; -webkit-box-shadow: 1px 1px 3px 2px #C295CB; box-shadow: 1px 1px 3px 2px #C295CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C295CB; -webkit-box-shadow: 1px 1px 3px 2px #C295CB; box-shadow:1px 1px 3px 2px #C295CB;">
Div content here</div>
This text has color #C295CB on black background.
This text has color #C295CB on white background.
This text has black color on #C295CB background.
This text has white color on #C295CB background.