import css from './css'; css` body { --theme-backdrop: #1e1e1e; --theme-fg: #eeeeee; --theme-note-bg: #eeeeee; --theme-note-fg: #363636; --theme-header-fg: #121212; } body.darktheme { --theme-backdrop: #1e1e1e; --theme-note-bg: #363636; --theme-note-fg: #eeeeee; --theme-header-fg: #121212; } body { color: var(--theme-fg); background: var(--theme-backdrop); font-family: sans-serif; font-size: 11px; } `;