HEX: #C7C425
RGB: (199,196,37)
#C7C425 contains mainly red and green colors. Web safe color of #C7C425 is #CCCC33 (or #CC3).
#C7C425 color RGB value is (199,196,37).
RGB: (199,196,37) (78%,77%,15%)
R 199 of 255 = 78%
G 196 of 255 = 77%
B 37 of 255 = 15%
R + G + B ~ 57%. #C7C425 is middle color (not dark and not light).
R + G + B =
199 + 196 + 37 = 432 (100%)
R 199 of 432 ~ 46.06%
G 196 of 432 ~ 45.37%
B 37 of 432 ~ 8.56%
#C7C425 color CMYK value is (0,2,81,22).
CMYK: (0,2,81,22) C0M2Y81K22 (0%,2%,81%,22%) (0.00/0.02/0.81/0.22)
C7 | C4 | 25 | |
---|---|---|---|
RGB | 199 | 196 | 37 |
HSL | 59° | 68.64% | 46.27% |
HSB/HSV | 59° | 81.41% | 78.04% |
CMYK | 0.00% | 1.51% | 81.41% |
21.96% |
HEX | C7 | C4 | 25 |
Decimal | 199 | 196 | 37 |
Binary | 11000111 | 11000100 | 100101 |
Octal | 307 | 304 | 45 |
Examples of css and html codes for elements with #C7C425 color. Also use rgb(199,196,37) instead hex code.
.myTextColor { color: #C7C425; }
<p style="color:#C7C425">This sample text font color is #C7C425.</p>
This text font color is #C7C425.
.myBgColor { background-color: #C7C425; }
<div style="background-color:#C7C425">Inner text</div>
This div background color is #C7C425.
.myBorderColor { border: 1px solid #C7C425; }
<div style="border:3px solid #C7C425">Div</div>
This div border color is #C7C425.
.myOpacity80 { color: #C7C425; opacity: 0.8; }
<p style="color:#C7C425;opacity:0.8;">80%</p>
Text with #C7C425 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7C425;}
<p style="text-shadow: 3px 3px 1px #C7C425">Text here.</p>
This text has shadow with #C7C425 color.
.textShadow {text-shadow: 3px 3px 1px #C7C425, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7C425, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7C425 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7C425, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7C425, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7C425 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7C425; -webkit-box-shadow: 1px 1px 3px 2px #C7C425; box-shadow: 1px 1px 3px 2px #C7C425; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7C425; -webkit-box-shadow: 1px 1px 3px 2px #C7C425; box-shadow:1px 1px 3px 2px #C7C425;">
Div content here</div>
This text has color #C7C425 on black background.
This text has color #C7C425 on white background.
This text has black color on #C7C425 background.
This text has white color on #C7C425 background.