summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/forms/checkbox.tsx
blob: aec97f00d71293be38fda4f463c3e05c38828565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
generated by cgit v1.2.3 (git 2.39.1) at 2025-10-28 01:27:23 +0000
 


"nx">matches;
};

/**
 * Retrieve the theme to use depending on the user system theme.
 */
export const getThemeFromSystem = () => {
  if (prefersDarkScheme()) return 'dark';
  return 'light';
};

export const themeValidator = (value: unknown): value is Theme =>
  typeof value === 'string' &&
  (VALID_THEMES as readonly string[]).includes(value);