HEX: #6D3FAA
RGB: (109,63,170)
#6D3FAA contains mainly blue color. Web safe color of #6D3FAA is #663399 (or #639).
#6D3FAA color RGB value is (109,63,170).
RGB: (109,63,170) (43%,25%,67%)
R 109 of 255 = 43%
G 63 of 255 = 25%
B 170 of 255 = 67%
R + G + B ~ 45%. #6D3FAA is middle color (not dark and not light).
R + G + B =
109 + 63 + 170 = 342 (100%)
R 109 of 342 ~ 31.87%
G 63 of 342 ~ 18.42%
B 170 of 342 ~ 49.71%
#6D3FAA color CMYK value is (36,63,0,33).
CMYK: (36,63,0,33) C36M63Y0K33 (36%,63%,0%,33%) (0.36/0.63/0.00/0.33)
6D | 3F | AA | |
---|---|---|---|
RGB | 109 | 63 | 170 |
HSL | 266° | 45.92% | 45.69% |
HSB/HSV | 266° | 62.94% | 66.67% |
CMYK | 35.88% | 62.94% | 0.00% |
33.33% |
HEX | 6D | 3F | AA |
Decimal | 109 | 63 | 170 |
Binary | 1101101 | 111111 | 10101010 |
Octal | 155 | 77 | 252 |
Examples of css and html codes for elements with #6D3FAA color. Also use rgb(109,63,170) instead hex code.
.myTextColor { color: #6D3FAA; }
<p style="color:#6D3FAA">This sample text font color is #6D3FAA.</p>
This text font color is #6D3FAA.
.myBgColor { background-color: #6D3FAA; }
<div style="background-color:#6D3FAA">Inner text</div>
This div background color is #6D3FAA.
.myBorderColor { border: 1px solid #6D3FAA; }
<div style="border:3px solid #6D3FAA">Div</div>
This div border color is #6D3FAA.
.myOpacity80 { color: #6D3FAA; opacity: 0.8; }
<p style="color:#6D3FAA;opacity:0.8;">80%</p>
Text with #6D3FAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6D3FAA;}
<p style="text-shadow: 3px 3px 1px #6D3FAA">Text here.</p>
This text has shadow with #6D3FAA color.
.textShadow {text-shadow: 3px 3px 1px #6D3FAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6D3FAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #6D3FAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6D3FAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6D3FAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #6D3FAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6D3FAA; -webkit-box-shadow: 1px 1px 3px 2px #6D3FAA; box-shadow: 1px 1px 3px 2px #6D3FAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6D3FAA; -webkit-box-shadow: 1px 1px 3px 2px #6D3FAA; box-shadow:1px 1px 3px 2px #6D3FAA;">
Div content here</div>
This text has color #6D3FAA on black background.
This text has color #6D3FAA on white background.
This text has black color on #6D3FAA background.
This text has white color on #6D3FAA background.