Resolves full ThemeColors for a given SdkTheme and dark mode state.
Selected theme identifier (e.g. 'system', 'ocean', 'dark').
'system'
'ocean'
'dark'
Boolean indicating if device system dark mode is active (used for 'system').
Complete ThemeColors color token mapping.
import { getThemeColors } from '@cupthread/react-native';const colors = getThemeColors('ocean');console.log(`Primary color: ${colors.primary}`); Copy
import { getThemeColors } from '@cupthread/react-native';const colors = getThemeColors('ocean');console.log(`Primary color: ${colors.primary}`);
Resolves full ThemeColors for a given SdkTheme and dark mode state.