#ff0000 Hex Color
RGB | 255 | 0 | 0 | |
---|---|---|---|---|
HSL | 0 | 1 | 0.5 | |
HSV | 0 | 100 | 100 | |
CMYK | 0 | 1 | 1 | 0 |
Shades of ff0000 color
Tint of ff0000 color
#ff0000 Color Preview on Black Background
Lorem ipsum dolor sit amet.
#ff0000 Color Preview on Black Background
Lorem ipsum dolor sit amet.
#ff0000 Color CSS Codes
.mybgcolor {background-color:#ff0000; } .myforecolor {color:#ff0000; } .mybordercolor {border:3px solid #ff0000; }
ff0000 Text Font Color
<p style="color:#ff0000">Text here</p>
This sample text font color is #ff0000 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.
ff0000 Background Color
<div style="background-color:#ff0000"> Div content here</div>
This div background color is #ff0000
ff0000 Border Color
<div style="border:3px solid #ff0000"> Div content here</div>
This div background color is #ff0000
Css3 Examples
.textShadowRgb { text-shadow: 4px 4px 2px rgba(255,0,0, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #ff0000; } .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ff0000; -webkit-box-shadow: 1px 1px 3px 2px #ff0000; box-shadow: 1px 1px 3px 2px #ff0000; }
Text Shadow with RGB Values
<p style="text-shadow: 4px 4px 2px rgba(255,0,0, 0.8);">Text here</p>
This text has shadow with rgb values.
Text Shadow with Hex Values
<p style="text-shadow: 4px 4px 2px #ff0000">Text here</p>
This text has shadow with hex values.
Div Box Shadow
<div style="-moz-box-shadow: 1px 1px 3px 2px #ff0000; -webkit-box-shadow: 1px 1px 3px 2px #ff0000; box-shadow: 1px 1px 3px 2px #ff0000;"> Div content here</div>
This div box has shadow with color #ff0000