#ff0000 Hex Color

RGB25500
HSL010.5
HSV0100100
CMYK0110

Shades of ff0000 color

#000000
#170000
#2e0000
#460000
#5d0000
#740000
#8b0000
#a20000
#b90000
#d10000
#e80000
#ff0000

Tint of ff0000 color

#ffffff
#ffe8e8
#ffd1d1
#ffb9b9
#ffa2a2
#ff8b8b
#ff7474
#ff5d5d
#ff4646
#ff2e2e
#ff1717
#ff0000

#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