--- MonthCalendar.py.orig	2010-03-24 16:47:37.179603140 +0900
+++ MonthCalendar.py	2010-03-24 16:58:13.169183621 +0900
@@ -281,7 +281,7 @@
 
     if parmpagename != [thispage]:
         pagelinks = ''
-        r, g, b = (255, 0, 0)
+        r, g, b = (195, 217, 255)
         l = len(parmpagename[0])
         steps = len(parmpagename)
         maxsteps = (255 / colorstep)
@@ -352,7 +352,7 @@
                 if daypage.exists() and request.user.may.read(link):
                     csslink = "cal-usedday"
                     query = {}
-                    r, g, b, u = (255, 0, 0, 1)
+                    r, g, b, u = (252, 252, 252, 1)
                     daycontent = daypage.get_raw_body()
                     header1_re = re.compile(r'^\s*=\s(.*)\s=$', re.MULTILINE) # re.UNICODE
                     titletext = []
@@ -374,7 +374,7 @@
                         query = {'action': 'edit', 'template': parmtemplate}
                     else:
                         query = {}
-                    r, g, b, u = (255, 255, 255, 0)
+                    r, g, b, u = (252, 252, 252, 0)
                     if wkday in wkend:
                         csslink = "cal-weekend"
                     attrs = {'rel': 'nofollow'}
@@ -392,7 +392,8 @@
                 fmtlink = formatter.url(1, daypage.url(request, query), csslink, **attrs) + str(day) + formatter.url(0)
                 if day == currentday and month == currentmonth and year == currentyear:
                     cssday = "cal-today"
-                    fmtlink = "<b>%s</b>" % fmtlink # for browser with CSS probs
+                    fmtlink = "%s" % fmtlink # for browser with CSS probs
+                    style = 'background-color:#ffffaa'
                 else:
                     cssday = "cal-nottoday"
                 restdn.append('  <td style="%s" class="%s">%s</td>\n' % (style, cssday, fmtlink))
