Files
2023-06-05 14:07:27 +08:00

20 lines
401 B
TypeScript

// uno.config.ts
import { defineConfig } from 'unocss'
export default defineConfig({
// ...UnoCSS options
theme: {
colors: {
customColor: '#1E1E1E', // Replace with your desired color value
a: '#86BCD4',
b: '#BFDFF1',
},
fontFamily: {
barlow: ['barlow'],
barlowb: ['barlow-bold'],
roboto: ['roboto'],
robotob: ['roboto-bold'],
},
},
})