Some Colours:

black

silver

gray

white

maroon

red

purple

fuchsia

green

lime

olive

yellow

blue

teal

aqua

Of course you can also make custom colours using rgb.

This page was made to look this way by putting the following between the <head> and </head> tags:

<style type="text/css">
  p { 
      background:	white ; 
      font-size:	150% ; 
      text-transform:	uppercase ; 
      border:		solid ; 
      border-width:	thick ; 
      width:		50% ; 
      margin-left:	20% ; 
      padding:		1em ;
  }
  p.black { color: black ; }
  p.silver { color: silver ; }
  p.gray { color: gray ; }
  p.white { color: white ; background: black ; }
  p.maroon { color: maroon ; }
  p.red { color: red ; }
  p.purple { color: purple ; }
  p.fuchsia { color: fuchsia ; }
  p.green { color: green ; }
  p.lime { color: lime ;  background: black ; }
  p.olive { color: olive ; }
  p.yellow { color: yellow ; background: black ; }
  p.navy { color: navy ; }
  p.blue { color: blue ; }
  p.teal { color: teal ; }
  p.aqua { color: aqua ; background: black ; }
</style>

Click here to continue