-
Notifications
You must be signed in to change notification settings - Fork 0
/
uno.config.ts
41 lines (39 loc) · 935 Bytes
/
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
import presetUno from '@unocss/preset-uno'
import presetWebFonts from '@unocss/preset-web-fonts'
import { defineConfig, presetTypography } from 'unocss'
import defaultTheme from 'tailwindcss/defaultTheme'
export default defineConfig({
theme: {
fontFamily: {
headings: ['Roboto Flex', 'Inter', ...defaultTheme.fontFamily.sans],
},
extend: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
colors: {
primary: {
50: '#fff2f2',
100: '#febbc0',
200: '#f78090',
300: '#e44664',
400: '#bf113d',
500: '#990633',
600: '#73012b',
700: '#4d0021',
800: '#260012',
},
},
},
},
presets: [
presetUno(),
presetTypography(),
presetWebFonts({
provider: 'google',
fonts: {
sans: ['Inter:100,400,500,600,700'],
},
}),
],
})