HEX: #6A477F
RGB: (106,71,127)
#6A477F contains red, green and blue colors in about the same proportion. Web safe color of #6A477F is #663366 (or #636).
#6A477F color RGB value is (106,71,127).
RGB: (106,71,127) (42%,28%,50%)
R 106 of 255 = 42%
G 71 of 255 = 28%
B 127 of 255 = 50%
R + G + B ~ 40%. #6A477F is middle color (not dark and not light).
R + G + B =
106 + 71 + 127 = 304 (100%)
R 106 of 304 ~ 34.87%
G 71 of 304 ~ 23.36%
B 127 of 304 ~ 41.78%
#6A477F color CMYK value is (17,44,0,50).
CMYK: (17,44,0,50) C17M44Y0K50 (17%,44%,0%,50%) (0.17/0.44/0.00/0.50)
6A | 47 | 7F | |
---|---|---|---|
RGB | 106 | 71 | 127 |
HSL | 278° | 28.28% | 38.82% |
HSB/HSV | 278° | 44.09% | 49.80% |
CMYK | 16.54% | 44.09% | 0.00% |
50.20% |
HEX | 6A | 47 | 7F |
Decimal | 106 | 71 | 127 |
Binary | 1101010 | 1000111 | 1111111 |
Octal | 152 | 107 | 177 |
Examples of css and html codes for elements with #6A477F color. Also use rgb(106,71,127) instead hex code.
.myTextColor { color: #6A477F; }
<p style="color:#6A477F">This sample text font color is #6A477F.</p>
This text font color is #6A477F.
.myBgColor { background-color: #6A477F; }
<div style="background-color:#6A477F">Inner text</div>
This div background color is #6A477F.
.myBorderColor { border: 1px solid #6A477F; }
<div style="border:3px solid #6A477F">Div</div>
This div border color is #6A477F.
.myOpacity80 { color: #6A477F; opacity: 0.8; }
<p style="color:#6A477F;opacity:0.8;">80%</p>
Text with #6A477F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6A477F;}
<p style="text-shadow: 3px 3px 1px #6A477F">Text here.</p>
This text has shadow with #6A477F color.
.textShadow {text-shadow: 3px 3px 1px #6A477F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6A477F, 5px 5px 20px red">Text here.</p>
This text has shadow with #6A477F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6A477F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6A477F, Direction=45, Strength=4)">Text</p>
This text has shadow with #6A477F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6A477F; -webkit-box-shadow: 1px 1px 3px 2px #6A477F; box-shadow: 1px 1px 3px 2px #6A477F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6A477F; -webkit-box-shadow: 1px 1px 3px 2px #6A477F; box-shadow:1px 1px 3px 2px #6A477F;">
Div content here</div>
This text has color #6A477F on black background.
This text has color #6A477F on white background.
This text has black color on #6A477F background.
This text has white color on #6A477F background.