HEX: #C7BE7C
RGB: (199,190,124)
#C7BE7C contains mainly red and green colors. Web safe color of #C7BE7C is #CCCC66 (or #CC6).
#C7BE7C color RGB value is (199,190,124).
RGB: (199,190,124) (78%,75%,49%)
R 199 of 255 = 78%
G 190 of 255 = 75%
B 124 of 255 = 49%
R + G + B ~ 67%. #C7BE7C is quite light color.
R + G + B =
199 + 190 + 124 = 513 (100%)
R 199 of 513 ~ 38.79%
G 190 of 513 ~ 37.04%
B 124 of 513 ~ 24.17%
#C7BE7C color CMYK value is (0,5,38,22).
CMYK: (0,5,38,22) C0M5Y38K22 (0%,5%,38%,22%) (0.00/0.05/0.38/0.22)
C7 | BE | 7C | |
---|---|---|---|
RGB | 199 | 190 | 124 |
HSL | 53° | 40.11% | 63.33% |
HSB/HSV | 53° | 37.69% | 78.04% |
CMYK | 0.00% | 4.52% | 37.69% |
21.96% |
HEX | C7 | BE | 7C |
Decimal | 199 | 190 | 124 |
Binary | 11000111 | 10111110 | 1111100 |
Octal | 307 | 276 | 174 |
Examples of css and html codes for elements with #C7BE7C color. Also use rgb(199,190,124) instead hex code.
.myTextColor { color: #C7BE7C; }
<p style="color:#C7BE7C">This sample text font color is #C7BE7C.</p>
This text font color is #C7BE7C.
.myBgColor { background-color: #C7BE7C; }
<div style="background-color:#C7BE7C">Inner text</div>
This div background color is #C7BE7C.
.myBorderColor { border: 1px solid #C7BE7C; }
<div style="border:3px solid #C7BE7C">Div</div>
This div border color is #C7BE7C.
.myOpacity80 { color: #C7BE7C; opacity: 0.8; }
<p style="color:#C7BE7C;opacity:0.8;">80%</p>
Text with #C7BE7C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7BE7C;}
<p style="text-shadow: 3px 3px 1px #C7BE7C">Text here.</p>
This text has shadow with #C7BE7C color.
.textShadow {text-shadow: 3px 3px 1px #C7BE7C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7BE7C, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7BE7C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7BE7C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7BE7C, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7BE7C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7BE7C; -webkit-box-shadow: 1px 1px 3px 2px #C7BE7C; box-shadow: 1px 1px 3px 2px #C7BE7C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7BE7C; -webkit-box-shadow: 1px 1px 3px 2px #C7BE7C; box-shadow:1px 1px 3px 2px #C7BE7C;">
Div content here</div>
This text has color #C7BE7C on black background.
This text has color #C7BE7C on white background.
This text has black color on #C7BE7C background.
This text has white color on #C7BE7C background.