HEX: #BB7740
RGB: (187,119,64)
#BB7740 contains mainly red color. Web safe color of #BB7740 is #CC6633 (or #C63).
#BB7740 color RGB value is (187,119,64).
RGB: (187,119,64) (73%,47%,25%)
R 187 of 255 = 73%
G 119 of 255 = 47%
B 64 of 255 = 25%
R + G + B ~ 48%. #BB7740 is middle color (not dark and not light).
R + G + B =
187 + 119 + 64 = 370 (100%)
R 187 of 370 ~ 50.54%
G 119 of 370 ~ 32.16%
B 64 of 370 ~ 17.3%
#BB7740 color CMYK value is (0,36,66,27).
CMYK: (0,36,66,27) C0M36Y66K27 (0%,36%,66%,27%) (0.00/0.36/0.66/0.27)
BB | 77 | 40 | |
---|---|---|---|
RGB | 187 | 119 | 64 |
HSL | 27° | 49.00% | 49.22% |
HSB/HSV | 27° | 65.78% | 73.33% |
CMYK | 0.00% | 36.36% | 65.78% |
26.67% |
HEX | BB | 77 | 40 |
Decimal | 187 | 119 | 64 |
Binary | 10111011 | 1110111 | 1000000 |
Octal | 273 | 167 | 100 |
Examples of css and html codes for elements with #BB7740 color. Also use rgb(187,119,64) instead hex code.
.myTextColor { color: #BB7740; }
<p style="color:#BB7740">This sample text font color is #BB7740.</p>
This text font color is #BB7740.
.myBgColor { background-color: #BB7740; }
<div style="background-color:#BB7740">Inner text</div>
This div background color is #BB7740.
.myBorderColor { border: 1px solid #BB7740; }
<div style="border:3px solid #BB7740">Div</div>
This div border color is #BB7740.
.myOpacity80 { color: #BB7740; opacity: 0.8; }
<p style="color:#BB7740;opacity:0.8;">80%</p>
Text with #BB7740 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB7740;}
<p style="text-shadow: 3px 3px 1px #BB7740">Text here.</p>
This text has shadow with #BB7740 color.
.textShadow {text-shadow: 3px 3px 1px #BB7740, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB7740, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB7740 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB7740, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB7740, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB7740 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB7740; -webkit-box-shadow: 1px 1px 3px 2px #BB7740; box-shadow: 1px 1px 3px 2px #BB7740; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB7740; -webkit-box-shadow: 1px 1px 3px 2px #BB7740; box-shadow:1px 1px 3px 2px #BB7740;">
Div content here</div>
This text has color #BB7740 on black background.
This text has color #BB7740 on white background.
This text has black color on #BB7740 background.
This text has white color on #BB7740 background.