HEX: #75478B
RGB: (117,71,139)
#75478B contains mainly red and blue colors. Web safe color of #75478B is #663399 (or #639).
#75478B color RGB value is (117,71,139).
RGB: (117,71,139) (46%,28%,55%)
R 117 of 255 = 46%
G 71 of 255 = 28%
B 139 of 255 = 55%
R + G + B ~ 43%. #75478B is middle color (not dark and not light).
R + G + B =
117 + 71 + 139 = 327 (100%)
R 117 of 327 ~ 35.78%
G 71 of 327 ~ 21.71%
B 139 of 327 ~ 42.51%
#75478B color CMYK value is (16,49,0,45).
CMYK: (16,49,0,45) C16M49Y0K45 (16%,49%,0%,45%) (0.16/0.49/0.00/0.45)
75 | 47 | 8B | |
---|---|---|---|
RGB | 117 | 71 | 139 |
HSL | 281° | 32.38% | 41.18% |
HSB/HSV | 281° | 48.92% | 54.51% |
CMYK | 15.83% | 48.92% | 0.00% |
45.49% |
HEX | 75 | 47 | 8B |
Decimal | 117 | 71 | 139 |
Binary | 1110101 | 1000111 | 10001011 |
Octal | 165 | 107 | 213 |
Examples of css and html codes for elements with #75478B color. Also use rgb(117,71,139) instead hex code.
.myTextColor { color: #75478B; }
<p style="color:#75478B">This sample text font color is #75478B.</p>
This text font color is #75478B.
.myBgColor { background-color: #75478B; }
<div style="background-color:#75478B">Inner text</div>
This div background color is #75478B.
.myBorderColor { border: 1px solid #75478B; }
<div style="border:3px solid #75478B">Div</div>
This div border color is #75478B.
.myOpacity80 { color: #75478B; opacity: 0.8; }
<p style="color:#75478B;opacity:0.8;">80%</p>
Text with #75478B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #75478B;}
<p style="text-shadow: 3px 3px 1px #75478B">Text here.</p>
This text has shadow with #75478B color.
.textShadow {text-shadow: 3px 3px 1px #75478B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #75478B, 5px 5px 20px red">Text here.</p>
This text has shadow with #75478B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#75478B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#75478B, Direction=45, Strength=4)">Text</p>
This text has shadow with #75478B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #75478B; -webkit-box-shadow: 1px 1px 3px 2px #75478B; box-shadow: 1px 1px 3px 2px #75478B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #75478B; -webkit-box-shadow: 1px 1px 3px 2px #75478B; box-shadow:1px 1px 3px 2px #75478B;">
Div content here</div>
This text has color #75478B on black background.
This text has color #75478B on white background.
This text has black color on #75478B background.
This text has white color on #75478B background.