Hi,
As I said before we are using a third party control for the day view and week view. This third party control uses inline styles and exposes some style properties that can be used to affect the style. I did some experimenting and found that you can control many aspects of the style from the theme.skin file.
First add this to the top of theme.skin:
<%@ Register Namespace="DayPilot.Web.Ui" Assembly="DayPilot" TagPrefix="dp" %>
then you can add this a little further down, I've configured this example to what seems to be the default styles, but you can tweak the styles by changing these properties:
<dp:daypilotcalendar runat="server"
BackColor="#FFFFD5"
BorderColor="#000000"
BorderStyle="solid"
BorderWidth="1px"
ColumnMarginRight="5"
CssClass=""
DayFontFamily="Tahoma"
DayFontSize="10pt"
EventBackColor="#FFFFFF"
EventBorderColor="#000000"
EventFontFamily="Tahoma"
EventFontSize="11px"
EventHoverColor="#DCDCDC"
EventLeftBarColor="Blue"
Font="Tahoma"
HeaderHeight="30"
HourBorderColor="#EAD098"
HourFontFamily="Tahoma"
HourFontSize="16pt"
HourHalfBorderColor="#F3E4B1"
HourHeight="40"
HourNameBackColor="#ECE9D8"
HourNameBorderColor="#ACA899"
HourWidth="40"
HoverColor="#FFED95"
NonBusinessBackColor="#FFF4BC"
ShowHeader="true"
ShowHours="true"
Width=""
/>
Hope that helps,
Joe