HEX: #6E438D
RGB: (110,67,141)
#6E438D contains mainly red and blue colors. Web safe color of #6E438D is #663399 (or #639).
#6E438D color RGB value is (110,67,141).
RGB: (110,67,141) (43%,26%,55%)
R 110 of 255 = 43%
G 67 of 255 = 26%
B 141 of 255 = 55%
R + G + B ~ 41%. #6E438D is middle color (not dark and not light).
R + G + B =
110 + 67 + 141 = 318 (100%)
R 110 of 318 ~ 34.59%
G 67 of 318 ~ 21.07%
B 141 of 318 ~ 44.34%
#6E438D color CMYK value is (22,52,0,45).
CMYK: (22,52,0,45) C22M52Y0K45 (22%,52%,0%,45%) (0.22/0.52/0.00/0.45)
6E | 43 | 8D | |
---|---|---|---|
RGB | 110 | 67 | 141 |
HSL | 275° | 35.58% | 40.78% |
HSB/HSV | 275° | 52.48% | 55.29% |
CMYK | 21.99% | 52.48% | 0.00% |
44.71% |
HEX | 6E | 43 | 8D |
Decimal | 110 | 67 | 141 |
Binary | 1101110 | 1000011 | 10001101 |
Octal | 156 | 103 | 215 |
Examples of css and html codes for elements with #6E438D color. Also use rgb(110,67,141) instead hex code.
.myTextColor { color: #6E438D; }
<p style="color:#6E438D">This sample text font color is #6E438D.</p>
This text font color is #6E438D.
.myBgColor { background-color: #6E438D; }
<div style="background-color:#6E438D">Inner text</div>
This div background color is #6E438D.
.myBorderColor { border: 1px solid #6E438D; }
<div style="border:3px solid #6E438D">Div</div>
This div border color is #6E438D.
.myOpacity80 { color: #6E438D; opacity: 0.8; }
<p style="color:#6E438D;opacity:0.8;">80%</p>
Text with #6E438D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E438D;}
<p style="text-shadow: 3px 3px 1px #6E438D">Text here.</p>
This text has shadow with #6E438D color.
.textShadow {text-shadow: 3px 3px 1px #6E438D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E438D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E438D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E438D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E438D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E438D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E438D; -webkit-box-shadow: 1px 1px 3px 2px #6E438D; box-shadow: 1px 1px 3px 2px #6E438D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E438D; -webkit-box-shadow: 1px 1px 3px 2px #6E438D; box-shadow:1px 1px 3px 2px #6E438D;">
Div content here</div>
This text has color #6E438D on black background.
This text has color #6E438D on white background.
This text has black color on #6E438D background.
This text has white color on #6E438D background.