HEX: #380009
RGB: (56,0,9)
#380009 contains only red and blue colors. Web safe color of #380009 is #330000 (or #300).
#380009 color RGB value is (56,0,9).
RGB: (56,0,9) (22%,0%,4%)
R 56 of 255 = 22%
G 0 of 255 = 0%
B 9 of 255 = 4%
R + G + B ~ 9%. #380009 is dark color.
R + G + B =
56 + 0 + 9 = 65 (100%)
R 56 of 65 ~ 86.15%
G 0 of 65 ~ 0%
B 9 of 65 ~ 13.85%
#380009 color CMYK value is (0,100,84,78).
CMYK: (0,100,84,78) C0M100Y84K78 (0%,100%,84%,78%) (0.00/1.00/0.84/0.78)
38 | 00 | 09 | |
---|---|---|---|
RGB | 56 | 0 | 9 |
HSL | 350° | 100.00% | 10.98% |
HSB/HSV | 350° | 100.00% | 21.96% |
CMYK | 0.00% | 100.00% | 83.93% |
78.04% |
HEX | 38 | 00 | 09 |
Decimal | 56 | 0 | 9 |
Binary | 111000 | 0 | 1001 |
Octal | 70 | 0 | 11 |
Examples of css and html codes for elements with #380009 color. Also use rgb(56,0,9) instead hex code.
.myTextColor { color: #380009; }
<p style="color:#380009">This sample text font color is #380009.</p>
This text font color is #380009.
.myBgColor { background-color: #380009; }
<div style="background-color:#380009">Inner text</div>
This div background color is #380009.
.myBorderColor { border: 1px solid #380009; }
<div style="border:3px solid #380009">Div</div>
This div border color is #380009.
.myOpacity80 { color: #380009; opacity: 0.8; }
<p style="color:#380009;opacity:0.8;">80%</p>
Text with #380009 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #380009;}
<p style="text-shadow: 3px 3px 1px #380009">Text here.</p>
This text has shadow with #380009 color.
.textShadow {text-shadow: 3px 3px 1px #380009, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #380009, 5px 5px 20px red">Text here.</p>
This text has shadow with #380009 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#380009, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#380009, Direction=45, Strength=4)">Text</p>
This text has shadow with #380009 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #380009; -webkit-box-shadow: 1px 1px 3px 2px #380009; box-shadow: 1px 1px 3px 2px #380009; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #380009; -webkit-box-shadow: 1px 1px 3px 2px #380009; box-shadow:1px 1px 3px 2px #380009;">
Div content here</div>
This text has color #380009 on black background.
This text has color #380009 on white background.
This text has black color on #380009 background.
This text has white color on #380009 background.