stack/docs/templates/components/stack-theme.mdx
Madison 4e467c4026
New docs (#698)
Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com>
Co-authored-by: Madison Kennedy <madison@Madisons-MacBook-Pro.local>
Co-authored-by: BilalG1 <bg2002@gmail.com>
2025-06-20 13:30:01 -07:00

48 lines
764 B
Plaintext

---
title: "<StackTheme />"
---
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
<PropTable
props={[
{
name: "theme",
type: "ThemeConfig",
description: "Custom theme configuration to override the default theme.",
optional: true
},
{
name: "children",
type: "React.ReactNode",
description: "Child components to be rendered within the themed context.",
optional: true
}
]}
/>
## Example
```tsx
const theme = {
light: {
primary: 'red',
},
dark: {
primary: '#00FF00',
},
radius: '8px',
}
// ...
<StackTheme theme={theme}>
{/* children */}
</StackTheme>
```