Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function useTheme(): ThemeContextValue;
ThemeContextValue
function App() { // Style a paragraph with the secondary text color const { theme } = useTheme(); return <p style={{ color: theme["colors-fg-muted"] }}>Secondary text</p>; }
Was this page helpful?