Googleカレンダーの土・日の文字色を変更する方法

Google Apps for Your Domain」のついでに使い始めた「Googleカレンダー」ですが、
こんな記事がありました。

いろいろ参考にさせていただきました。


*profile-directory*/chrome/userContent.css
を作成して、以下を追記。


@-moz-document url-prefix("http://www.google.com/calendar/"), 
               url-prefix("https://www.google.com/calendar/") {

body {
  font-size: 120% !important ;
 }

  #decowner > [style*="left:"] > .dayOfMonth {
    color: #000 !important;
    font-weight: bold ;
  }

  #decowner > [style*="left:"] > .dayNotInMonth {
    background-color: #FFF !important;
    color: #CCC !important;
    font-weight: 100 ;
  }

  #decowner > [style*="left: 8"] > .dayOfMonth {
    color: #000 !important;
    font-weight: bold ;
    background-color: #88F !important;
  }
  #decowner > [style*="left: 8"] > .dayNotInMonth {
    color: #88F !important;
    background-color: #EEF !important;
    font-weight: 100 ;
  }
  #decowner > [style*="left: 8"] > .currentDay {
    background-color: #99F !important;
  }

  #decowner > [style*="left: 0"] > .dayOfMonth {  
    color: #000 !important;
    font-weight: bold ;
    background-color: #F88 !important;
  }
  #decowner > [style*="left: 0"] > .dayNotInMonth {
    color: #F88 !important;
    background-color: #FEE !important;
    font-weight: 100 ;
  }
  #decowner > [style*="left: 0"] > .currentDay {
    background-color: #F99 !important;
  }

  [id^="dp_0_day_"][id$="_6"] {
    color: #22F;
  }
  [id^="dp_0_day_"][id$="_0"] {
    color: #F22;
  }
}




こんな感じになります。
Firefox使いの方は是非。

*11/6 ちょっと修正
*11/7 さらにちょっと修正