HEX: #BB5E5C
RGB: (187,94,92)
#BB5E5C contains mainly red color. Web safe color of #BB5E5C is #CC6666 (or #C66).
#BB5E5C color RGB value is (187,94,92).
RGB: (187,94,92) (73%,37%,36%)
R 187 of 255 = 73%
G 94 of 255 = 37%
B 92 of 255 = 36%
R + G + B ~ 49%. #BB5E5C is middle color (not dark and not light).
R + G + B =
187 + 94 + 92 = 373 (100%)
R 187 of 373 ~ 50.13%
G 94 of 373 ~ 25.2%
B 92 of 373 ~ 24.66%
#BB5E5C color CMYK value is (0,50,51,27).
CMYK: (0,50,51,27) C0M50Y51K27 (0%,50%,51%,27%) (0.00/0.50/0.51/0.27)
BB | 5E | 5C | |
---|---|---|---|
RGB | 187 | 94 | 92 |
HSL | 1° | 41.13% | 54.71% |
HSB/HSV | 1° | 50.80% | 73.33% |
CMYK | 0.00% | 49.73% | 50.80% |
26.67% |
HEX | BB | 5E | 5C |
Decimal | 187 | 94 | 92 |
Binary | 10111011 | 1011110 | 1011100 |
Octal | 273 | 136 | 134 |
Examples of css and html codes for elements with #BB5E5C color. Also use rgb(187,94,92) instead hex code.
.myTextColor { color: #BB5E5C; }
<p style="color:#BB5E5C">This sample text font color is #BB5E5C.</p>
This text font color is #BB5E5C.
.myBgColor { background-color: #BB5E5C; }
<div style="background-color:#BB5E5C">Inner text</div>
This div background color is #BB5E5C.
.myBorderColor { border: 1px solid #BB5E5C; }
<div style="border:3px solid #BB5E5C">Div</div>
This div border color is #BB5E5C.
.myOpacity80 { color: #BB5E5C; opacity: 0.8; }
<p style="color:#BB5E5C;opacity:0.8;">80%</p>
Text with #BB5E5C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB5E5C;}
<p style="text-shadow: 3px 3px 1px #BB5E5C">Text here.</p>
This text has shadow with #BB5E5C color.
.textShadow {text-shadow: 3px 3px 1px #BB5E5C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB5E5C, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB5E5C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB5E5C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB5E5C, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB5E5C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB5E5C; -webkit-box-shadow: 1px 1px 3px 2px #BB5E5C; box-shadow: 1px 1px 3px 2px #BB5E5C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB5E5C; -webkit-box-shadow: 1px 1px 3px 2px #BB5E5C; box-shadow:1px 1px 3px 2px #BB5E5C;">
Div content here</div>
This text has color #BB5E5C on black background.
This text has color #BB5E5C on white background.
This text has black color on #BB5E5C background.
This text has white color on #BB5E5C background.