/* This file defines a list of commonly used colors in the documentation. Each of them is defined for both 
light mode and dark mode. When adding a new color, ensure to define it for both modes and check if
it looks good in both themes. */

/*Light mode colors*/
body {
    --color-red: #C51E3A;
    --color-yellow: #B8860B;
}

/*Dark mode colors*/
body[data-md-color-scheme="slate"] {
    --color-red: #E34234;
    --color-yellow: #e0bf00;
}