HEX: #990033
RGB: (153,0,51)
#990033 contains mainly red color. #990033 color is web safe color. It maybe written shortly as #903.
#990033 color RGB value is (153,0,51).
RGB: (153,0,51) (60%,0%,20%)
R 153 of 255 = 60%
G 0 of 255 = 0%
B 51 of 255 = 20%
R + G + B ~ 27%. #990033 is quite dark color.
R + G + B =
153 + 0 + 51 = 204 (100%)
R 153 of 204 ~ 75%
G 0 of 204 ~ 0%
B 51 of 204 ~ 25%
#990033 color CMYK value is (0,100,67,40).
CMYK: (0,100,67,40) C0M100Y67K40 (0%,100%,67%,40%) (0.00/1.00/0.67/0.40)
99 | 00 | 33 | |
---|---|---|---|
RGB | 153 | 0 | 51 |
HSL | 340° | 100.00% | 30.00% |
HSB/HSV | 340° | 100.00% | 60.00% |
CMYK | 0.00% | 100.00% | 66.67% |
40.00% |
HEX | 99 | 00 | 33 |
Decimal | 153 | 0 | 51 |
Binary | 10011001 | 0 | 110011 |
Octal | 231 | 0 | 63 |
Examples of css and html codes for elements with #990033 color. Also use rgb(153,0,51) instead hex code.
.myTextColor { color: #990033; }
<p style="color:#990033">This sample text font color is #990033.</p>
This text font color is #990033.
.myBgColor { background-color: #990033; }
<div style="background-color:#990033">Inner text</div>
This div background color is #990033.
.myBorderColor { border: 1px solid #990033; }
<div style="border:3px solid #990033">Div</div>
This div border color is #990033.
.myOpacity80 { color: #990033; opacity: 0.8; }
<p style="color:#990033;opacity:0.8;">80%</p>
Text with #990033 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #990033;}
<p style="text-shadow: 3px 3px 1px #990033">Text here.</p>
This text has shadow with #990033 color.
.textShadow {text-shadow: 3px 3px 1px #990033, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #990033, 5px 5px 20px red">Text here.</p>
This text has shadow with #990033 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#990033, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#990033, Direction=45, Strength=4)">Text</p>
This text has shadow with #990033 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #990033; -webkit-box-shadow: 1px 1px 3px 2px #990033; box-shadow: 1px 1px 3px 2px #990033; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #990033; -webkit-box-shadow: 1px 1px 3px 2px #990033; box-shadow:1px 1px 3px 2px #990033;">
Div content here</div>
This text has color #990033 on black background.
This text has color #990033 on white background.
This text has black color on #990033 background.
This text has white color on #990033 background.