-
Notifications
You must be signed in to change notification settings - Fork 0
/
uno.config.ts
42 lines (41 loc) · 1.12 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
import { defineConfig, presetIcons, presetUno } from 'unocss'
export default defineConfig({
shortcuts: {
magic:
'bg-clip-text bg-gradient-radial from-cinder-900 via-cinder-400 to-cinder-900 dark:bg-gradient-to-br dark:from-sky-300 dark:to-pink-300 inline-block text-transparent',
steel:
'bg-clip-text bg-gradient-radial from-neutral-400 via-neutral-600 to-neutral-700 dark:bg-gradient-to-br dark:from-neutral-200 dark:to-neutral-800 inline-block text-transparent',
},
theme: {
fontFamily: {
headings: ['Syne', 'sans-serif'],
body: ['Inter', 'sans-serif'],
},
colors: {
cinder: {
50: '#f7f5fa',
100: '#edeaf4',
200: '#d6d0e7',
300: '#b1a7d2',
400: '#8477b9',
500: '#6656a1',
600: '#534287',
700: '#45376d',
800: '#3b305c',
900: '#352c4e',
950: '#100d17',
1000: '#080812',
},
},
},
presets: [
presetUno(),
presetIcons({
extraProperties: {
'display': 'inline-block',
'vertical-align': 'middle',
},
cdn: 'https://esm.sh/',
}),
],
})