--- title: "" --- A component that applies a theme to its children. For more information, please refer to the [color and styles guide](../customization/custom-styles.mdx). ## Props ## Example ```tsx const theme = { light: { primary: 'red', }, dark: { primary: '#00FF00', }, radius: '8px', } // ... {/* children */} ```