HEX: #47009B
RGB: (71,0,155)
#47009B contains mainly blue color. Web safe color of #47009B is #330099 (or #309).
#47009B color RGB value is (71,0,155).
RGB: (71,0,155) (28%,0%,61%)
R 71 of 255 = 28%
G 0 of 255 = 0%
B 155 of 255 = 61%
R + G + B ~ 30%. #47009B is quite dark color.
R + G + B =
71 + 0 + 155 = 226 (100%)
R 71 of 226 ~ 31.42%
G 0 of 226 ~ 0%
B 155 of 226 ~ 68.58%
#47009B color CMYK value is (54,100,0,39).
CMYK: (54,100,0,39) C54M100Y0K39 (54%,100%,0%,39%) (0.54/1.00/0.00/0.39)
47 | 00 | 9B | |
---|---|---|---|
RGB | 71 | 0 | 155 |
HSL | 267° | 100.00% | 30.39% |
HSB/HSV | 267° | 100.00% | 60.78% |
CMYK | 54.19% | 100.00% | 0.00% |
39.22% |
HEX | 47 | 00 | 9B |
Decimal | 71 | 0 | 155 |
Binary | 1000111 | 0 | 10011011 |
Octal | 107 | 0 | 233 |
Examples of css and html codes for elements with #47009B color. Also use rgb(71,0,155) instead hex code.
.myTextColor { color: #47009B; }
<p style="color:#47009B">This sample text font color is #47009B.</p>
This text font color is #47009B.
.myBgColor { background-color: #47009B; }
<div style="background-color:#47009B">Inner text</div>
This div background color is #47009B.
.myBorderColor { border: 1px solid #47009B; }
<div style="border:3px solid #47009B">Div</div>
This div border color is #47009B.
.myOpacity80 { color: #47009B; opacity: 0.8; }
<p style="color:#47009B;opacity:0.8;">80%</p>
Text with #47009B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47009B;}
<p style="text-shadow: 3px 3px 1px #47009B">Text here.</p>
This text has shadow with #47009B color.
.textShadow {text-shadow: 3px 3px 1px #47009B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47009B, 5px 5px 20px red">Text here.</p>
This text has shadow with #47009B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47009B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47009B, Direction=45, Strength=4)">Text</p>
This text has shadow with #47009B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47009B; -webkit-box-shadow: 1px 1px 3px 2px #47009B; box-shadow: 1px 1px 3px 2px #47009B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47009B; -webkit-box-shadow: 1px 1px 3px 2px #47009B; box-shadow:1px 1px 3px 2px #47009B;">
Div content here</div>
This text has color #47009B on black background.
This text has color #47009B on white background.
This text has black color on #47009B background.
This text has white color on #47009B background.