HEX: #BCC598
RGB: (188,197,152)
#BCC598 contains red, green and blue colors in about the same proportion. Web safe color of #BCC598 is #CCCC99 (or #CC9).
#BCC598 color RGB value is (188,197,152).
RGB: (188,197,152) (74%,77%,60%)
R 188 of 255 = 74%
G 197 of 255 = 77%
B 152 of 255 = 60%
R + G + B ~ 70%. #BCC598 is quite light color.
R + G + B =
188 + 197 + 152 = 537 (100%)
R 188 of 537 ~ 35.01%
G 197 of 537 ~ 36.69%
B 152 of 537 ~ 28.31%
#BCC598 color CMYK value is (5,0,23,23).
CMYK: (5,0,23,23) C5M0Y23K23 (5%,0%,23%,23%) (0.05/0.00/0.23/0.23)
BC | C5 | 98 | |
---|---|---|---|
RGB | 188 | 197 | 152 |
HSL | 72° | 27.95% | 68.43% |
HSB/HSV | 72° | 22.84% | 77.25% |
CMYK | 4.57% | 0.00% | 22.84% |
22.75% |
HEX | BC | C5 | 98 |
Decimal | 188 | 197 | 152 |
Binary | 10111100 | 11000101 | 10011000 |
Octal | 274 | 305 | 230 |
Examples of css and html codes for elements with #BCC598 color. Also use rgb(188,197,152) instead hex code.
.myTextColor { color: #BCC598; }
<p style="color:#BCC598">This sample text font color is #BCC598.</p>
This text font color is #BCC598.
.myBgColor { background-color: #BCC598; }
<div style="background-color:#BCC598">Inner text</div>
This div background color is #BCC598.
.myBorderColor { border: 1px solid #BCC598; }
<div style="border:3px solid #BCC598">Div</div>
This div border color is #BCC598.
.myOpacity80 { color: #BCC598; opacity: 0.8; }
<p style="color:#BCC598;opacity:0.8;">80%</p>
Text with #BCC598 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC598;}
<p style="text-shadow: 3px 3px 1px #BCC598">Text here.</p>
This text has shadow with #BCC598 color.
.textShadow {text-shadow: 3px 3px 1px #BCC598, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC598, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC598 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC598, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC598, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC598 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC598; -webkit-box-shadow: 1px 1px 3px 2px #BCC598; box-shadow: 1px 1px 3px 2px #BCC598; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC598; -webkit-box-shadow: 1px 1px 3px 2px #BCC598; box-shadow:1px 1px 3px 2px #BCC598;">
Div content here</div>
This text has color #BCC598 on black background.
This text has color #BCC598 on white background.
This text has black color on #BCC598 background.
This text has white color on #BCC598 background.