names/src/state/global/system.ts
2025-05-07 23:49:22 +03:00

10 lines
175 B
TypeScript

import { atom } from 'jotai';
export enum EnumTheme {
LIGHT = 1,
DARK = 2,
}
// Atom to hold the current theme
export const themeAtom = atom<EnumTheme>(EnumTheme.DARK);