#ff3300 hex color information.
RGB value of #ff3300 is (255,51,0)
#ff3300 hex color code is also equal to #F30
Change page background color to #ff3300
| Reset
| RGB | 255 | 51 | 0 |
|---|---|---|---|
| HSL | 0.03 | 1.00 | 0.50 |
| HSV | 12° | 100° | 100° |
| CMYK | 0.00 | 0.80 | 1.00 0.00 |
| XYZ | 42.4238 | 23.6277 | 2.3246 |
| Yxy | 23.6277 | 0.6204 | 0.3456 |
| Hunter Lab | 48.6083 | 70.7245 | 31.1904 |
| CIE-Lab | 55.7131 | 73.0065 | 68.1603 |
#ff3300 hex color red value is 255, green value is 51 and the blue value of its RGB is 51. Cylindrical-coordinate representations (also known as HSL) of color #ff3300 hue: 0.03 , saturation: 1.00 and the lightness value of ff3300 is 0.50.
The process color (four color CMYK) of #ff3300 hex color is 0.00, 0.80, 1.00, 0.00. Web safe color of #ff3300 is #ff3300
Color #ff3300 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11111111 | 00110011 | 00000000 |
| Octal | 377 | 63 | 0 |
| Decimal | 255 | 51 | 0 |
| Hexadecimal | FF | 33 | 0 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#ff3300; }
.myforecolor {color:#ff3300; }
.mybordercolor {border:3px solid #ff3300; }
This sample text font color is #ff3300
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#ff3300">Text here</p>
This div background color is #ff3300
<div style="background-color:#ff3300">
Div content here</div>
This div border color is #ff3300
<div style="border:3px solid #ff3300">
Div here</div>
| #ff3300 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(255,51,0, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #ff3300;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #ff3300;
-webkit-box-shadow: 1px 1px 3px 2px #ff3300;
box-shadow: 1px 1px 3px 2px #ff3300;
}
<p style="text-shadow: 4px 4px 2px rgba(255,51,0, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #ff3300">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #ff3300
<div style="-moz-box-shadow: 1px 1px 3px 2px #ff3300; -webkit-box-shadow: 1px 1px 3px 2px #ff3300; box-shadow: 1px 1px 3px 2px #ff3300;">
Div content here</div>