[tweak] dark mode colors (#2469)
This PR fixes a few dark mode colors and removes some unused styles. ### Change Type - [x] `patch` — Bug fix
This commit is contained in:
parent
231354d93c
commit
1f425dcab3
6 changed files with 82 additions and 208 deletions
14
scripts/purge-css.ts
Normal file
14
scripts/purge-css.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
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()
|
Loading…
Add table
Add a link
Reference in a new issue