HEX: #633300
RGB: (99,51,0)
#633300 contains only red and green colors. Web safe color of #633300 is #663300 (or #630).
#633300 color RGB value is (99,51,0).
RGB: (99,51,0) (39%,20%,0%)
R 99 of 255 = 39%
G 51 of 255 = 20%
B 0 of 255 = 0%
R + G + B ~ 20%. #633300 is dark color.
R + G + B =
99 + 51 + 0 = 150 (100%)
R 99 of 150 ~ 66%
G 51 of 150 ~ 34%
B 0 of 150 ~ 0%
#633300 color CMYK value is (0,48,100,61).
CMYK: (0,48,100,61) C0M48Y100K61 (0%,48%,100%,61%) (0.00/0.48/1.00/0.61)
63 | 33 | 00 | |
---|---|---|---|
RGB | 99 | 51 | 0 |
HSL | 31° | 100.00% | 19.41% |
HSB/HSV | 31° | 100.00% | 38.82% |
CMYK | 0.00% | 48.48% | 100.00% |
61.18% |
HEX | 63 | 33 | 00 |
Decimal | 99 | 51 | 0 |
Binary | 1100011 | 110011 | 0 |
Octal | 143 | 63 | 0 |
Examples of css and html codes for elements with #633300 color. Also use rgb(99,51,0) instead hex code.
.myTextColor { color: #633300; }
<p style="color:#633300">This sample text font color is #633300.</p>
This text font color is #633300.
.myBgColor { background-color: #633300; }
<div style="background-color:#633300">Inner text</div>
This div background color is #633300.
.myBorderColor { border: 1px solid #633300; }
<div style="border:3px solid #633300">Div</div>
This div border color is #633300.
.myOpacity80 { color: #633300; opacity: 0.8; }
<p style="color:#633300;opacity:0.8;">80%</p>
Text with #633300 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #633300;}
<p style="text-shadow: 3px 3px 1px #633300">Text here.</p>
This text has shadow with #633300 color.
.textShadow {text-shadow: 3px 3px 1px #633300, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #633300, 5px 5px 20px red">Text here.</p>
This text has shadow with #633300 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#633300, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#633300, Direction=45, Strength=4)">Text</p>
This text has shadow with #633300 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #633300; -webkit-box-shadow: 1px 1px 3px 2px #633300; box-shadow: 1px 1px 3px 2px #633300; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #633300; -webkit-box-shadow: 1px 1px 3px 2px #633300; box-shadow:1px 1px 3px 2px #633300;">
Div content here</div>
This text has color #633300 on black background.
This text has color #633300 on white background.
This text has black color on #633300 background.
This text has white color on #633300 background.