-
Notifications
You must be signed in to change notification settings - Fork 0
/
uno.config.ts
45 lines (44 loc) · 1.17 KB
/
uno.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// uno.config.ts
import { defineConfig } from 'unocss'
import presetWind from '@unocss/preset-wind'
import presetRemToPx from '@unocss/preset-rem-to-px'
import presetIcons from '@unocss/preset-icons'
import presetWebFonts from '@unocss/preset-web-fonts'
import transformerCompileClass from '@unocss/transformer-compile-class'
import transformerDirectives from '@unocss/transformer-directives'
export default defineConfig({
presets: [
presetWebFonts({
inlineImports: true,
provider: 'none', // default provider
extendTheme: true,
fonts: {
// these will extend the default theme
sans: 'Roboto',
dancing: 'Dancing Script',
roboto: 'Roboto',
mono: ['Fira Code', 'Fira Mono:400,700'],
// custom ones
lobster: 'Lobster',
lato: [
{
name: 'Lato',
weights: ['400', '700'],
italic: true,
},
{
name: 'sans-serif',
provider: 'none',
},
],
},
}),
presetWind(),
presetRemToPx(),
presetIcons(),
],
transformers: [
transformerCompileClass(),
transformerDirectives(),
],
})