HEX: #C5DC6B
RGB: (197,220,107)
#C5DC6B contains mainly red and green colors. Web safe color of #C5DC6B is #CCCC66 (or #CC6).
#C5DC6B color RGB value is (197,220,107).
RGB: (197,220,107) (77%,86%,42%)
R 197 of 255 = 77%
G 220 of 255 = 86%
B 107 of 255 = 42%
R + G + B ~ 68%. #C5DC6B is quite light color.
R + G + B =
197 + 220 + 107 = 524 (100%)
R 197 of 524 ~ 37.6%
G 220 of 524 ~ 41.98%
B 107 of 524 ~ 20.42%
#C5DC6B color CMYK value is (10,0,51,14).
CMYK: (10,0,51,14) C10M0Y51K14 (10%,0%,51%,14%) (0.10/0.00/0.51/0.14)
C5 | DC | 6B | |
---|---|---|---|
RGB | 197 | 220 | 107 |
HSL | 72° | 61.75% | 64.12% |
HSB/HSV | 72° | 51.36% | 86.27% |
CMYK | 10.45% | 0.00% | 51.36% |
13.73% |
HEX | C5 | DC | 6B |
Decimal | 197 | 220 | 107 |
Binary | 11000101 | 11011100 | 1101011 |
Octal | 305 | 334 | 153 |
Examples of css and html codes for elements with #C5DC6B color. Also use rgb(197,220,107) instead hex code.
.myTextColor { color: #C5DC6B; }
<p style="color:#C5DC6B">This sample text font color is #C5DC6B.</p>
This text font color is #C5DC6B.
.myBgColor { background-color: #C5DC6B; }
<div style="background-color:#C5DC6B">Inner text</div>
This div background color is #C5DC6B.
.myBorderColor { border: 1px solid #C5DC6B; }
<div style="border:3px solid #C5DC6B">Div</div>
This div border color is #C5DC6B.
.myOpacity80 { color: #C5DC6B; opacity: 0.8; }
<p style="color:#C5DC6B;opacity:0.8;">80%</p>
Text with #C5DC6B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5DC6B;}
<p style="text-shadow: 3px 3px 1px #C5DC6B">Text here.</p>
This text has shadow with #C5DC6B color.
.textShadow {text-shadow: 3px 3px 1px #C5DC6B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5DC6B, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5DC6B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5DC6B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5DC6B, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5DC6B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5DC6B; -webkit-box-shadow: 1px 1px 3px 2px #C5DC6B; box-shadow: 1px 1px 3px 2px #C5DC6B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5DC6B; -webkit-box-shadow: 1px 1px 3px 2px #C5DC6B; box-shadow:1px 1px 3px 2px #C5DC6B;">
Div content here</div>
This text has color #C5DC6B on black background.
This text has color #C5DC6B on white background.
This text has black color on #C5DC6B background.
This text has white color on #C5DC6B background.