chore(badges): hex-only body_text_color + form color picker; renderer default black
This commit is contained in:
@@ -1,4 +1,11 @@
|
||||
import type { Config } from 'tailwindcss';
|
||||
|
||||
// Tailwind's shipped `Config` type may not include the `safelist` option
|
||||
// depending on the installed types/version. Extend it locally so we can
|
||||
// use `safelist` without TypeScript errors.
|
||||
type ConfigWithSafelist = Config & {
|
||||
safelist?: Array<string | { pattern: RegExp }>;
|
||||
};
|
||||
import { skeleton } from '@skeletonlabs/skeleton';
|
||||
import forms from '@tailwindcss/forms';
|
||||
import typography from '@tailwindcss/typography';
|
||||
@@ -40,6 +47,6 @@ const config = {
|
||||
}
|
||||
})
|
||||
]
|
||||
} satisfies Config;
|
||||
} satisfies ConfigWithSafelist;
|
||||
|
||||
export default config;
|
||||
|
||||
Reference in New Issue
Block a user