Fix black mode

This commit is contained in:
Alex Gleason 2024-11-13 19:57:31 -06:00
parent 4e283d2edd
commit 1211f217b1
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import plugin from 'tailwindcss/plugin';
import { parseColorMatrix } from './tailwind/colors.ts';
const blackVariantPlugin = plugin(({ addVariant }) => addVariant('black', '.black &'));
const blackVariantPlugin = plugin(({ addVariant }) => addVariant('black', '.black.black &'));
const config: Config = {
content: ['./src/**/*.{html,js,ts,tsx}', './custom/instance/**/*.html', './index.html'],