HEX: #C6CDBE
RGB: (198,205,190)
#C6CDBE contains red, green and blue colors in about the same proportion. Web safe color of #C6CDBE is #CCCCCC (or #CCC).
#C6CDBE color RGB value is (198,205,190).
RGB: (198,205,190) (78%,80%,75%)
R 198 of 255 = 78%
G 205 of 255 = 80%
B 190 of 255 = 75%
R + G + B ~ 78%. #C6CDBE is quite light color.
R + G + B =
198 + 205 + 190 = 593 (100%)
R 198 of 593 ~ 33.39%
G 205 of 593 ~ 34.57%
B 190 of 593 ~ 32.04%
#C6CDBE color CMYK value is (3,0,7,20).
CMYK: (3,0,7,20) C3M0Y7K20 (3%,0%,7%,20%) (0.03/0.00/0.07/0.20)
C6 | CD | BE | |
---|---|---|---|
RGB | 198 | 205 | 190 |
HSL | 88° | 13.04% | 77.45% |
HSB/HSV | 88° | 7.32% | 80.39% |
CMYK | 3.41% | 0.00% | 7.32% |
19.61% |
HEX | C6 | CD | BE |
Decimal | 198 | 205 | 190 |
Binary | 11000110 | 11001101 | 10111110 |
Octal | 306 | 315 | 276 |
Examples of css and html codes for elements with #C6CDBE color. Also use rgb(198,205,190) instead hex code.
.myTextColor { color: #C6CDBE; }
<p style="color:#C6CDBE">This sample text font color is #C6CDBE.</p>
This text font color is #C6CDBE.
.myBgColor { background-color: #C6CDBE; }
<div style="background-color:#C6CDBE">Inner text</div>
This div background color is #C6CDBE.
.myBorderColor { border: 1px solid #C6CDBE; }
<div style="border:3px solid #C6CDBE">Div</div>
This div border color is #C6CDBE.
.myOpacity80 { color: #C6CDBE; opacity: 0.8; }
<p style="color:#C6CDBE;opacity:0.8;">80%</p>
Text with #C6CDBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6CDBE;}
<p style="text-shadow: 3px 3px 1px #C6CDBE">Text here.</p>
This text has shadow with #C6CDBE color.
.textShadow {text-shadow: 3px 3px 1px #C6CDBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6CDBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6CDBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6CDBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6CDBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6CDBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6CDBE; -webkit-box-shadow: 1px 1px 3px 2px #C6CDBE; box-shadow: 1px 1px 3px 2px #C6CDBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6CDBE; -webkit-box-shadow: 1px 1px 3px 2px #C6CDBE; box-shadow:1px 1px 3px 2px #C6CDBE;">
Div content here</div>
This text has color #C6CDBE on black background.
This text has color #C6CDBE on white background.
This text has black color on #C6CDBE background.
This text has white color on #C6CDBE background.