20 lines
428 B
TypeScript
20 lines
428 B
TypeScript
|
|
import { defineConfig, presetWind } from 'unocss'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
presets: [presetWind()],
|
||
|
|
theme: {
|
||
|
|
colors: {
|
||
|
|
brand: '#f28a4b',
|
||
|
|
'text-primary': '#2e2a28',
|
||
|
|
'text-secondary': '#7a726d',
|
||
|
|
surface: '#f8f3ee',
|
||
|
|
'surface-alt': '#f2eae3',
|
||
|
|
'surface-footer': '#efe6de',
|
||
|
|
'border-light': '#e3d9d1',
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
sans: ['Inter', 'sans-serif'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|