-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathuno.config.ts
112 lines (108 loc) · 3.25 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import {
defineConfig,
presetAttributify,
presetIcons,
presetTypography,
presetUno,
presetWebFonts,
transformerDirectives,
transformerVariantGroup,
} from 'unocss'
import presetAnimations from 'unocss-preset-animations'
import { builtinColors, presetShadcn } from 'unocss-preset-shadcn'
export default defineConfig({
variants: [
{
// nth-[]:class
name: ':nth-child()',
match: (matcher: string) => {
const match = matcher.match(/^nth-\[(.+?):/)
if (!match)
return matcher
return {
// slice `hover:` prefix and passed to the next variants and rules
matcher: matcher.substring(match[0].length),
selector: s => `${s}:nth-child(${match[1]})`,
}
},
multiPass: true,
},
],
theme: {
colors: {
'sidebar': 'hsl(var(--sidebar-background))',
'sidebar-foreground': 'hsl(var(--sidebar-foreground))',
'sidebar-primary': 'hsl(var(--sidebar-primary))',
'sidebar-primary-foreground': 'hsl(var(--sidebar-primary-foreground))',
'sidebar-accent': 'hsl(var(--sidebar-accent))',
'sidebar-accent-foreground': 'hsl(var(--sidebar-accent-foreground))',
'sidebar-border': 'hsl(var(--sidebar-border))',
'sidebar-ring': 'hsl(var(--sidebar-ring))',
},
},
presets: [
presetUno(),
presetAttributify(),
presetIcons({
scale: 1.2,
}),
presetTypography(),
presetWebFonts({
fonts: {
sans: 'Chivo',
mono: 'Chivo Mono',
},
}),
presetAnimations(),
presetShadcn(builtinColors.map(c => ({ color: c }))),
],
transformers: [
transformerDirectives(),
transformerVariantGroup({ separators: [':'] }),
],
content: {
pipeline: {
include: [
// the default
/\.(vue|svelte|[jt]sx|mdx?|astro|elm|php|phtml|html)($|\?)/,
// include js/ts files
'components/ui/**/*.{js,ts}',
],
},
},
preflights: [
{
getCSS: () => `
:root {
--vis-tooltip-background-color: none !important;
--vis-tooltip-border-color: none !important;
--vis-tooltip-text-color: none !important;
--vis-tooltip-shadow-color: none !important;
--vis-tooltip-backdrop-filter: none !important;
--vis-tooltip-padding: none !important;
--vis-primary-color: var(--primary);
--vis-secondary-color: 160 81% 40%;
--vis-text-color: var(--muted-foreground);
--sidebar-background: 0 0% 98%;
--sidebar-foreground: 240 5.3% 26.1%;
--sidebar-primary: 240 5.9% 10%;
--sidebar-primary-foreground: 0 0% 98%;
--sidebar-accent: 240 4.8% 95.9%;
--sidebar-accent-foreground: 240 5.9% 10%;
--sidebar-border: 220 13% 91%;
--sidebar-ring: 217.2 91.2% 59.8%;
}
.dark {
--sidebar-background: 240 5.9% 10%;
--sidebar-foreground: 240 4.8% 95.9%;
--sidebar-primary: 224.3 76.3% 48%;
--sidebar-primary-foreground: 0 0% 100%;
--sidebar-accent: 240 3.7% 15.9%;
--sidebar-accent-foreground: 240 4.8% 95.9%;
--sidebar-border: 240 3.7% 15.9%;
--sidebar-ring: 217.2 91.2% 59.8%;
}
`,
},
],
})