24 lines
520 B
JavaScript
24 lines
520 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'
|
|
];
|
|
}
|
|
|
|
|
|
class Export {
|
|
static png_options = {
|
|
foreignObjectRendering: true,
|
|
logging: true,
|
|
removeContainer: true,
|
|
async: true,
|
|
}
|
|
} |