マウスをのせるとやわらかく色が変わる

  p {
      background: #eee;
      transition: background .2s;
}

  p:hover {
      background: #aaa;
}