:root {
    /*
    This file defines the color default, Light, color scheme.
    */
    --primary-action-text: white;
    --primary-action-background: var(--theme-color-blue-400);
    --primary-action-background-hover: var(--theme-color-blue-600);

    --success-action-text: white;
    --success-action-background: var(--theme-color-green-400);
    --success-action-background-hover: var(--theme-color-green-700);

    --danger-action-text: white;
    --danger-action-background: var(--theme-color-red-400);
    --danger-action-background-hover: var(--theme-color-red-700);

    --secondary-action-text: white;
    --secondary-action-background: var(--theme-color-gray-600);
    --secondary-action-background-hover: var(--theme-color-gray-700);
    --secondary-action-disabled: var(--theme-color-gray-200);

    --information-alert-text: var(--theme-color-blue-800);
    --information-alert-background: var(--theme-color-blue-50);
    --information-alert-border: var(--theme-color-blue-200);

    --error-alert-text: var(--theme-color-red-800);
    --error-alert-background: var(--theme-color-red-100);
    --error-alert-border: var(--theme-color-red-200);

    --success: var(--theme-color-green-400);
    --error: var(--theme-color-red-400);
    --information: var(--theme-color-blue-400);
    --exception: var(--theme-color-orange-400);

    --general-tag-background: var(--theme-color-blue-400);

    --muted-text: var(--theme-color-gray-600);

    --background: rgb(247, 249, 250);
    --font-color: var(--theme-color-blue-800);

    --brand-text: var(--theme-color-blue-900);

    --card-background: white;
    --card-border: var(--theme-color-gray-200);
    --table-background: white;
    --table-header: var(--theme-color-gray-100);
    --table-border: var(--theme-color-gray-300);

    --sidebar-focus: var(--theme-color-blue-100);
    --sidebar-text: var(--theme-color-gray-800);
    --sidebar-icons: var(--theme-color-gray-600);
}