HEX: #BB6A53
RGB: (187,106,83)
#BB6A53 contains mainly red color. Web safe color of #BB6A53 is #CC6666 (or #C66).
#BB6A53 color RGB value is (187,106,83).
RGB: (187,106,83) (73%,42%,33%)
R 187 of 255 = 73%
G 106 of 255 = 42%
B 83 of 255 = 33%
R + G + B ~ 49%. #BB6A53 is middle color (not dark and not light).
R + G + B =
187 + 106 + 83 = 376 (100%)
R 187 of 376 ~ 49.73%
G 106 of 376 ~ 28.19%
B 83 of 376 ~ 22.07%
#BB6A53 color CMYK value is (0,43,56,27).
CMYK: (0,43,56,27) C0M43Y56K27 (0%,43%,56%,27%) (0.00/0.43/0.56/0.27)
BB | 6A | 53 | |
---|---|---|---|
RGB | 187 | 106 | 83 |
HSL | 13° | 43.33% | 52.94% |
HSB/HSV | 13° | 55.61% | 73.33% |
CMYK | 0.00% | 43.32% | 55.61% |
26.67% |
HEX | BB | 6A | 53 |
Decimal | 187 | 106 | 83 |
Binary | 10111011 | 1101010 | 1010011 |
Octal | 273 | 152 | 123 |
Examples of css and html codes for elements with #BB6A53 color. Also use rgb(187,106,83) instead hex code.
.myTextColor { color: #BB6A53; }
<p style="color:#BB6A53">This sample text font color is #BB6A53.</p>
This text font color is #BB6A53.
.myBgColor { background-color: #BB6A53; }
<div style="background-color:#BB6A53">Inner text</div>
This div background color is #BB6A53.
.myBorderColor { border: 1px solid #BB6A53; }
<div style="border:3px solid #BB6A53">Div</div>
This div border color is #BB6A53.
.myOpacity80 { color: #BB6A53; opacity: 0.8; }
<p style="color:#BB6A53;opacity:0.8;">80%</p>
Text with #BB6A53 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB6A53;}
<p style="text-shadow: 3px 3px 1px #BB6A53">Text here.</p>
This text has shadow with #BB6A53 color.
.textShadow {text-shadow: 3px 3px 1px #BB6A53, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB6A53, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB6A53 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB6A53, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB6A53, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB6A53 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB6A53; -webkit-box-shadow: 1px 1px 3px 2px #BB6A53; box-shadow: 1px 1px 3px 2px #BB6A53; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB6A53; -webkit-box-shadow: 1px 1px 3px 2px #BB6A53; box-shadow:1px 1px 3px 2px #BB6A53;">
Div content here</div>
This text has color #BB6A53 on black background.
This text has color #BB6A53 on white background.
This text has black color on #BB6A53 background.
This text has white color on #BB6A53 background.