mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-02 19:55:07 -05:00
13 lines
295 B
TypeScript
13 lines
295 B
TypeScript
import { defineStyle, defineStyleConfig } from '@chakra-ui/react';
|
|
import { mode } from '@chakra-ui/theme-tools';
|
|
|
|
const accent = defineStyle((props) => ({
|
|
color: mode('accent.500', 'accent.300')(props),
|
|
}));
|
|
|
|
export const headingTheme = defineStyleConfig({
|
|
variants: {
|
|
accent,
|
|
},
|
|
});
|