import { useState, type Dispatch, type SetStateAction } from 'react' import { isClient } from '@tamagui/constants' import type { ColorScheme } from './types' export const useRootTheme = ({ fallback = 'light' }: { fallback?: ColorScheme } = {}): [ ColorScheme, Dispatch>, ] => { let initialVal = fallback if (isClient) { const classes = document.documentElement.classList initialVal = classes.contains('t_dark') ? 'dark' : classes.contains('t_light') ? 'light' : fallback } return useState(initialVal) }