HEX: #6E2B66
RGB: (110,43,102)
#6E2B66 contains mainly red and blue colors. Web safe color of #6E2B66 is #663366 (or #636).
#6E2B66 color RGB value is (110,43,102).
RGB: (110,43,102) (43%,17%,40%)
R 110 of 255 = 43%
G 43 of 255 = 17%
B 102 of 255 = 40%
R + G + B ~ 33%. #6E2B66 is quite dark color.
R + G + B =
110 + 43 + 102 = 255 (100%)
R 110 of 255 ~ 43.14%
G 43 of 255 ~ 16.86%
B 102 of 255 ~ 40%
#6E2B66 color CMYK value is (0,61,7,57).
CMYK: (0,61,7,57) C0M61Y7K57 (0%,61%,7%,57%) (0.00/0.61/0.07/0.57)
6E | 2B | 66 | |
---|---|---|---|
RGB | 110 | 43 | 102 |
HSL | 307° | 43.79% | 30.00% |
HSB/HSV | 307° | 60.91% | 43.14% |
CMYK | 0.00% | 60.91% | 7.27% |
56.86% |
HEX | 6E | 2B | 66 |
Decimal | 110 | 43 | 102 |
Binary | 1101110 | 101011 | 1100110 |
Octal | 156 | 53 | 146 |
Examples of css and html codes for elements with #6E2B66 color. Also use rgb(110,43,102) instead hex code.
.myTextColor { color: #6E2B66; }
<p style="color:#6E2B66">This sample text font color is #6E2B66.</p>
This text font color is #6E2B66.
.myBgColor { background-color: #6E2B66; }
<div style="background-color:#6E2B66">Inner text</div>
This div background color is #6E2B66.
.myBorderColor { border: 1px solid #6E2B66; }
<div style="border:3px solid #6E2B66">Div</div>
This div border color is #6E2B66.
.myOpacity80 { color: #6E2B66; opacity: 0.8; }
<p style="color:#6E2B66;opacity:0.8;">80%</p>
Text with #6E2B66 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E2B66;}
<p style="text-shadow: 3px 3px 1px #6E2B66">Text here.</p>
This text has shadow with #6E2B66 color.
.textShadow {text-shadow: 3px 3px 1px #6E2B66, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E2B66, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E2B66 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E2B66, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E2B66, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E2B66 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E2B66; -webkit-box-shadow: 1px 1px 3px 2px #6E2B66; box-shadow: 1px 1px 3px 2px #6E2B66; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E2B66; -webkit-box-shadow: 1px 1px 3px 2px #6E2B66; box-shadow:1px 1px 3px 2px #6E2B66;">
Div content here</div>
This text has color #6E2B66 on black background.
This text has color #6E2B66 on white background.
This text has black color on #6E2B66 background.
This text has white color on #6E2B66 background.