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