1f425dcab3
This PR fixes a few dark mode colors and removes some unused styles. ### Change Type - [x] `patch` — Bug fix
14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
import { PurgeCSS } from 'purgecss'
|
|
import { nicelog } from './lib/nicelog'
|
|
|
|
async function main() {
|
|
const purgeCSSResults = await new PurgeCSS().purge({
|
|
content: ['packages/tldraw/**/*.tsx', 'packages/editor/**/*.tsx'],
|
|
css: ['packages/tldraw/src/lib/ui.css'],
|
|
rejected: true,
|
|
})
|
|
|
|
nicelog(purgeCSSResults)
|
|
}
|
|
|
|
main()
|