-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuno.config.ts
More file actions
69 lines (69 loc) · 2.12 KB
/
uno.config.ts
File metadata and controls
69 lines (69 loc) · 2.12 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import presetRemToPx from '@unocss/preset-rem-to-px'
import transformerCompileClass from '@unocss/transformer-compile-class'
import transformerDirectives from '@unocss/transformer-directives'
import transformerVariantGroup from '@unocss/transformer-variant-group'
import { defineConfig, presetAttributify, presetIcons, presetUno } from 'unocss'
export default defineConfig({
content: {
filesystem: ['**/*.{scss,css,html,js,ts,jsx,tsx,vue,svelte,astro}']
// codes below are commented out because they're required by `@unocss/webpack` to process `@import` and `@apply` directives,
// and the usage of `@unocss/webpack` is blocked by the issue https://github.com/unocss/unocss/issues/3198
// pipeline: {
// // include: [/src\/.*\.(s?css|[jt]sx?)$/],
// include: [/\.([jt]sx|mdx?|html|s?css)($|\?)/],
// exclude: []
// }
},
presets: [
presetUno({
dark: {
dark: '.dark-mode',
light: '.light-mode'
}
}),
presetIcons(),
presetAttributify(),
presetRemToPx()
],
rules: [
[
/^bg-gradient-(\d+)$/,
([, d]) => ({
'--un-gradient-shape': `${d}deg;`,
'--un-gradient': 'var(--un-gradient-shape), var(--un-gradient-stops);',
'background-image': 'linear-gradient(var(--un-gradient));'
})
],
[
/^-bg-gradient-(\d+)$/,
([, d]) => ({
'--un-gradient-shape': `-${d}deg;`,
'--un-gradient': 'var(--un-gradient-shape), var(--un-gradient-stops);',
'background-image': 'linear-gradient(var(--un-gradient));'
})
],
[
'font-noto-serif',
{
'font-family': '"Noto Serif SC", "Noto Serif TC", serif'
}
],
[
'font-code',
{
'font-family':
'"Cascadia Code", var(--font-fira-code), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace'
}
]
],
transformers: [
transformerDirectives({
enforce: 'pre'
}),
// transformerCompileClass({
// classPrefix: 'ouo-',
// // trigger: /(["'`]):ouo(?:-)?(?<name>[^\s\1]+)?:\s([^\1]*?)\1/g
// }),
transformerVariantGroup()
]
})