HEX: #C5DF3E
RGB: (197,223,62)
#C5DF3E contains mainly red and green colors. Web safe color of #C5DF3E is #CCCC33 (or #CC3).
#C5DF3E color RGB value is (197,223,62).
RGB: (197,223,62) (77%,87%,24%)
R 197 of 255 = 77%
G 223 of 255 = 87%
B 62 of 255 = 24%
R + G + B ~ 63%. #C5DF3E is quite light color.
R + G + B =
197 + 223 + 62 = 482 (100%)
R 197 of 482 ~ 40.87%
G 223 of 482 ~ 46.27%
B 62 of 482 ~ 12.86%
#C5DF3E color CMYK value is (12,0,72,13).
CMYK: (12,0,72,13) C12M0Y72K13 (12%,0%,72%,13%) (0.12/0.00/0.72/0.13)
C5 | DF | 3E | |
---|---|---|---|
RGB | 197 | 223 | 62 |
HSL | 70° | 71.56% | 55.88% |
HSB/HSV | 70° | 72.20% | 87.45% |
CMYK | 11.66% | 0.00% | 72.20% |
12.55% |
HEX | C5 | DF | 3E |
Decimal | 197 | 223 | 62 |
Binary | 11000101 | 11011111 | 111110 |
Octal | 305 | 337 | 76 |
Examples of css and html codes for elements with #C5DF3E color. Also use rgb(197,223,62) instead hex code.
.myTextColor { color: #C5DF3E; }
<p style="color:#C5DF3E">This sample text font color is #C5DF3E.</p>
This text font color is #C5DF3E.
.myBgColor { background-color: #C5DF3E; }
<div style="background-color:#C5DF3E">Inner text</div>
This div background color is #C5DF3E.
.myBorderColor { border: 1px solid #C5DF3E; }
<div style="border:3px solid #C5DF3E">Div</div>
This div border color is #C5DF3E.
.myOpacity80 { color: #C5DF3E; opacity: 0.8; }
<p style="color:#C5DF3E;opacity:0.8;">80%</p>
Text with #C5DF3E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5DF3E;}
<p style="text-shadow: 3px 3px 1px #C5DF3E">Text here.</p>
This text has shadow with #C5DF3E color.
.textShadow {text-shadow: 3px 3px 1px #C5DF3E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5DF3E, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5DF3E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5DF3E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5DF3E, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5DF3E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5DF3E; -webkit-box-shadow: 1px 1px 3px 2px #C5DF3E; box-shadow: 1px 1px 3px 2px #C5DF3E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5DF3E; -webkit-box-shadow: 1px 1px 3px 2px #C5DF3E; box-shadow:1px 1px 3px 2px #C5DF3E;">
Div content here</div>
This text has color #C5DF3E on black background.
This text has color #C5DF3E on white background.
This text has black color on #C5DF3E background.
This text has white color on #C5DF3E background.