HEX: #BC6762
RGB: (188,103,98)
#BC6762 contains mainly red color. Web safe color of #BC6762 is #CC6666 (or #C66).
#BC6762 color RGB value is (188,103,98).
RGB: (188,103,98) (74%,40%,38%)
R 188 of 255 = 74%
G 103 of 255 = 40%
B 98 of 255 = 38%
R + G + B ~ 51%. #BC6762 is middle color (not dark and not light).
R + G + B =
188 + 103 + 98 = 389 (100%)
R 188 of 389 ~ 48.33%
G 103 of 389 ~ 26.48%
B 98 of 389 ~ 25.19%
#BC6762 color CMYK value is (0,45,48,26).
CMYK: (0,45,48,26) C0M45Y48K26 (0%,45%,48%,26%) (0.00/0.45/0.48/0.26)
BC | 67 | 62 | |
---|---|---|---|
RGB | 188 | 103 | 98 |
HSL | 3° | 40.18% | 56.08% |
HSB/HSV | 3° | 47.87% | 73.73% |
CMYK | 0.00% | 45.21% | 47.87% |
26.27% |
HEX | BC | 67 | 62 |
Decimal | 188 | 103 | 98 |
Binary | 10111100 | 1100111 | 1100010 |
Octal | 274 | 147 | 142 |
Examples of css and html codes for elements with #BC6762 color. Also use rgb(188,103,98) instead hex code.
.myTextColor { color: #BC6762; }
<p style="color:#BC6762">This sample text font color is #BC6762.</p>
This text font color is #BC6762.
.myBgColor { background-color: #BC6762; }
<div style="background-color:#BC6762">Inner text</div>
This div background color is #BC6762.
.myBorderColor { border: 1px solid #BC6762; }
<div style="border:3px solid #BC6762">Div</div>
This div border color is #BC6762.
.myOpacity80 { color: #BC6762; opacity: 0.8; }
<p style="color:#BC6762;opacity:0.8;">80%</p>
Text with #BC6762 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC6762;}
<p style="text-shadow: 3px 3px 1px #BC6762">Text here.</p>
This text has shadow with #BC6762 color.
.textShadow {text-shadow: 3px 3px 1px #BC6762, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC6762, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC6762 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC6762, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC6762, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC6762 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC6762; -webkit-box-shadow: 1px 1px 3px 2px #BC6762; box-shadow: 1px 1px 3px 2px #BC6762; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC6762; -webkit-box-shadow: 1px 1px 3px 2px #BC6762; box-shadow:1px 1px 3px 2px #BC6762;">
Div content here</div>
This text has color #BC6762 on black background.
This text has color #BC6762 on white background.
This text has black color on #BC6762 background.
This text has white color on #BC6762 background.