/**
 * StaticStyles that get instantiated before the React context is available
 * Cannot use tokens/theme value references since the actual css-vars have not be injected yet
 */

body {
    /* Should match `background-page-alt` light token */
    background-color: #fafafb;
}

/* Should match the value of shared enum `ThemeClassName.dark` in "@/client/styles/themes" */
body.dark-theme {
    /* Should match `background-page-alt` dark token */
    background-color: #1c222c;
}
