HEX: #C3ADBC
RGB: (195,173,188)
#C3ADBC contains red, green and blue colors in about the same proportion. Web safe color of #C3ADBC is #CC99CC (or #C9C).
#C3ADBC color RGB value is (195,173,188).
RGB: (195,173,188) (76%,68%,74%)
R 195 of 255 = 76%
G 173 of 255 = 68%
B 188 of 255 = 74%
R + G + B ~ 73%. #C3ADBC is quite light color.
R + G + B =
195 + 173 + 188 = 556 (100%)
R 195 of 556 ~ 35.07%
G 173 of 556 ~ 31.12%
B 188 of 556 ~ 33.81%
#C3ADBC color CMYK value is (0,11,4,24).
CMYK: (0,11,4,24) C0M11Y4K24 (0%,11%,4%,24%) (0.00/0.11/0.04/0.24)
C3 | AD | BC | |
---|---|---|---|
RGB | 195 | 173 | 188 |
HSL | 319° | 15.49% | 72.16% |
HSB/HSV | 319° | 11.28% | 76.47% |
CMYK | 0.00% | 11.28% | 3.59% |
23.53% |
HEX | C3 | AD | BC |
Decimal | 195 | 173 | 188 |
Binary | 11000011 | 10101101 | 10111100 |
Octal | 303 | 255 | 274 |
Examples of css and html codes for elements with #C3ADBC color. Also use rgb(195,173,188) instead hex code.
.myTextColor { color: #C3ADBC; }
<p style="color:#C3ADBC">This sample text font color is #C3ADBC.</p>
This text font color is #C3ADBC.
.myBgColor { background-color: #C3ADBC; }
<div style="background-color:#C3ADBC">Inner text</div>
This div background color is #C3ADBC.
.myBorderColor { border: 1px solid #C3ADBC; }
<div style="border:3px solid #C3ADBC">Div</div>
This div border color is #C3ADBC.
.myOpacity80 { color: #C3ADBC; opacity: 0.8; }
<p style="color:#C3ADBC;opacity:0.8;">80%</p>
Text with #C3ADBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C3ADBC;}
<p style="text-shadow: 3px 3px 1px #C3ADBC">Text here.</p>
This text has shadow with #C3ADBC color.
.textShadow {text-shadow: 3px 3px 1px #C3ADBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C3ADBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C3ADBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C3ADBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C3ADBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C3ADBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C3ADBC; -webkit-box-shadow: 1px 1px 3px 2px #C3ADBC; box-shadow: 1px 1px 3px 2px #C3ADBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C3ADBC; -webkit-box-shadow: 1px 1px 3px 2px #C3ADBC; box-shadow:1px 1px 3px 2px #C3ADBC;">
Div content here</div>
This text has color #C3ADBC on black background.
This text has color #C3ADBC on white background.
This text has black color on #C3ADBC background.
This text has white color on #C3ADBC background.