HEX: #C5BDCC
RGB: (197,189,204)
#C5BDCC contains red, green and blue colors in about the same proportion. Web safe color of #C5BDCC is #CCCCCC (or #CCC).
#C5BDCC color RGB value is (197,189,204).
RGB: (197,189,204) (77%,74%,80%)
R 197 of 255 = 77%
G 189 of 255 = 74%
B 204 of 255 = 80%
R + G + B ~ 77%. #C5BDCC is quite light color.
R + G + B =
197 + 189 + 204 = 590 (100%)
R 197 of 590 ~ 33.39%
G 189 of 590 ~ 32.03%
B 204 of 590 ~ 34.58%
#C5BDCC color CMYK value is (3,7,0,20).
CMYK: (3,7,0,20) C3M7Y0K20 (3%,7%,0%,20%) (0.03/0.07/0.00/0.20)
C5 | BD | CC | |
---|---|---|---|
RGB | 197 | 189 | 204 |
HSL | 272° | 12.82% | 77.06% |
HSB/HSV | 272° | 7.35% | 80.00% |
CMYK | 3.43% | 7.35% | 0.00% |
20.00% |
HEX | C5 | BD | CC |
Decimal | 197 | 189 | 204 |
Binary | 11000101 | 10111101 | 11001100 |
Octal | 305 | 275 | 314 |
Examples of css and html codes for elements with #C5BDCC color. Also use rgb(197,189,204) instead hex code.
.myTextColor { color: #C5BDCC; }
<p style="color:#C5BDCC">This sample text font color is #C5BDCC.</p>
This text font color is #C5BDCC.
.myBgColor { background-color: #C5BDCC; }
<div style="background-color:#C5BDCC">Inner text</div>
This div background color is #C5BDCC.
.myBorderColor { border: 1px solid #C5BDCC; }
<div style="border:3px solid #C5BDCC">Div</div>
This div border color is #C5BDCC.
.myOpacity80 { color: #C5BDCC; opacity: 0.8; }
<p style="color:#C5BDCC;opacity:0.8;">80%</p>
Text with #C5BDCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5BDCC;}
<p style="text-shadow: 3px 3px 1px #C5BDCC">Text here.</p>
This text has shadow with #C5BDCC color.
.textShadow {text-shadow: 3px 3px 1px #C5BDCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5BDCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5BDCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5BDCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5BDCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5BDCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5BDCC; -webkit-box-shadow: 1px 1px 3px 2px #C5BDCC; box-shadow: 1px 1px 3px 2px #C5BDCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5BDCC; -webkit-box-shadow: 1px 1px 3px 2px #C5BDCC; box-shadow:1px 1px 3px 2px #C5BDCC;">
Div content here</div>
This text has color #C5BDCC on black background.
This text has color #C5BDCC on white background.
This text has black color on #C5BDCC background.
This text has white color on #C5BDCC background.