/**
* Base class for Modals
* @abstract
* @extends Content
*/
class Modal extends Content{
updateColor() {
/** @type HTMLElement */
let content = document.getElementById(this.mainID).querySelector(".modal-content");
content.style.color = colors.currentForeground;
content.style.backgroundColor = colors.currentBsBackground;
content.style.border = `1px solid ${colors.currentForeground}`;
}
}