HEX: #6B2E53
RGB: (107,46,83)
#6B2E53 contains mainly red and blue colors. Web safe color of #6B2E53 is #663366 (or #636).
#6B2E53 color RGB value is (107,46,83).
RGB: (107,46,83) (42%,18%,33%)
R 107 of 255 = 42%
G 46 of 255 = 18%
B 83 of 255 = 33%
R + G + B ~ 31%. #6B2E53 is quite dark color.
R + G + B =
107 + 46 + 83 = 236 (100%)
R 107 of 236 ~ 45.34%
G 46 of 236 ~ 19.49%
B 83 of 236 ~ 35.17%
#6B2E53 color CMYK value is (0,57,22,58).
CMYK: (0,57,22,58) C0M57Y22K58 (0%,57%,22%,58%) (0.00/0.57/0.22/0.58)
6B | 2E | 53 | |
---|---|---|---|
RGB | 107 | 46 | 83 |
HSL | 324° | 39.87% | 30.00% |
HSB/HSV | 324° | 57.01% | 41.96% |
CMYK | 0.00% | 57.01% | 22.43% |
58.04% |
HEX | 6B | 2E | 53 |
Decimal | 107 | 46 | 83 |
Binary | 1101011 | 101110 | 1010011 |
Octal | 153 | 56 | 123 |
Examples of css and html codes for elements with #6B2E53 color. Also use rgb(107,46,83) instead hex code.
.myTextColor { color: #6B2E53; }
<p style="color:#6B2E53">This sample text font color is #6B2E53.</p>
This text font color is #6B2E53.
.myBgColor { background-color: #6B2E53; }
<div style="background-color:#6B2E53">Inner text</div>
This div background color is #6B2E53.
.myBorderColor { border: 1px solid #6B2E53; }
<div style="border:3px solid #6B2E53">Div</div>
This div border color is #6B2E53.
.myOpacity80 { color: #6B2E53; opacity: 0.8; }
<p style="color:#6B2E53;opacity:0.8;">80%</p>
Text with #6B2E53 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B2E53;}
<p style="text-shadow: 3px 3px 1px #6B2E53">Text here.</p>
This text has shadow with #6B2E53 color.
.textShadow {text-shadow: 3px 3px 1px #6B2E53, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B2E53, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B2E53 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B2E53, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B2E53, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B2E53 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B2E53; -webkit-box-shadow: 1px 1px 3px 2px #6B2E53; box-shadow: 1px 1px 3px 2px #6B2E53; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B2E53; -webkit-box-shadow: 1px 1px 3px 2px #6B2E53; box-shadow:1px 1px 3px 2px #6B2E53;">
Div content here</div>
This text has color #6B2E53 on black background.
This text has color #6B2E53 on white background.
This text has black color on #6B2E53 background.
This text has white color on #6B2E53 background.