/* Ersetze die drei Variablen primaryColorCode, secondaryColorCode und accentColorCode durch die Farbcodes des Kunden (#xxxxxx oder rgb(xx,xx,xx))*/
:root {
    --theme-primary: #e30613;
    --theme-primary-contrast: white;
    --theme-secondary: #a6a6a6;
    --theme-secondary-contrast: white;
    --theme-accent: #2d8d9a;
    --theme-accent-contrast: white;
    --theme-error: #FF5252;
    --theme-error-contrast: white;
    --theme-info: #2196F3;
    --theme-info-contrast: white;
    --theme-success: #4CAF50;
    --theme-success-contrast: white;
    --theme-warning: #FB8C00;
    --theme-warning-contrast: white;
}