20 lines
532 B
TypeScript
20 lines
532 B
TypeScript
import { defineConfig, presetWind3 } from 'unocss'
|
|
|
|
export default defineConfig({
|
|
presets: [presetWind3()],
|
|
theme: {
|
|
colors: {
|
|
ink: '#17211b',
|
|
moss: '#1f6f5b',
|
|
indigo: '#4157c7',
|
|
amber: '#c98522',
|
|
paper: '#f7f8f4',
|
|
},
|
|
},
|
|
shortcuts: {
|
|
'panel': 'bg-white border border-#dfe5dd rounded-2 shadow-sm',
|
|
'toolbar': 'flex flex-wrap items-center gap-3',
|
|
'icon-btn': 'inline-flex items-center justify-center w-9 h-9 rounded-2 border border-#dfe5dd bg-white hover:bg-#f4f7f2',
|
|
},
|
|
})
|