Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
// calendar style
//var cal_style = new FStyleFormat();
/*
MyCal.face = "#0099CC";
cal_style.arrow = 0x0029CB;
cal_style.background = 0x6B6FEB;
cal_style.backgroundDisabled = 0xE1E0FF;
cal_style.darkshadow = 0x4D69D8;
cal_style.foregroundDisabled = 0x999999;
cal_style.highlight = 0xFFFFFF;
// TEXT FORMATTING
cal_style.FCalendarHeadText = new TextFormat();
cal_style.FCalendarDayText = new TextFormat();
cal_style.FCalendarDateText = new TextFormat();
// calendar head text
cal_style.FCalendarHeadText.color = 0xFFFFFF;
cal_style.FCalendarHeadText.bold = true;
cal_style.FCalendarHeadText.size = 14;
// calendar day text
cal_style.FCalendarDayText.color = 0x0029CB;
cal_style.FCalendarDayText.bold = true;
cal_style.FCalendarDayText
// calendar date text
cal_style.FCalendarDateText.color = 0x0029CB;
cal_style.FCalendarDateText.bold = true;
cal_style.FCalendarDateText.size = 12;
cal_style.addListener(MyCal)
cal_style.applyChanges();
*/