Files
UT-Registration-Plus/js/config.js
Sriram Hariharan 893e882377 cleaned up code
2019-08-11 10:09:59 -05:00

35 lines
758 B
JavaScript

class Timing {
static fade_time = 100;
static calendar_fade_time = 100;
static button_delay = 75;
}
class Colors {
static material_colors = ['#4CAF50', '#CDDC39',
'#FFC107', '#2196F3', '#F57C00', '#9C27B0', '#FF5722', '#673AB7',
'#FF5252', '#E91E63', '#009688', '#00BCD4',
'#4E342E', '#424242', '#9E9E9E'
];
static open = "#4CAF50";
static waitlisted = "#FF9800";
static closed = "#FF5722";
static highlight_conflict = "#F44336";
static highlight_default = "#333333";
static highlight_saved = "#4CAF50";
}
class Export {
static png_options = {
foreignObjectRendering: true,
logging: true,
removeContainer: true,
async: true,
}
}
class Text {
}