forked from soybeanjs/soybean-admin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathuno.config.mjs
166 lines (163 loc) · 7.02 KB
/
uno.config.mjs
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import { defineConfig, presetUno } from 'unocss';
import transformerDirectives from '@unocss/transformer-directives';
export default defineConfig({
content: {
pipeline: {
exclude: ['node_modules', 'dist', '.git', '.husky', '.vscode', 'public', 'build', 'mock', './stats.html']
}
},
presets: [presetUno({ dark: 'class' })],
transformers: [transformerDirectives()],
shortcuts: {
'wh-full': 'w-full h-full',
'flex-center': 'flex justify-center items-center',
'flex-col-center': 'flex-center flex-col',
'flex-x-center': 'flex justify-center',
'flex-y-center': 'flex items-center',
'i-flex-center': 'inline-flex justify-center items-center',
'i-flex-x-center': 'inline-flex justify-center',
'i-flex-y-center': 'inline-flex items-center',
'flex-col': 'flex flex-col',
'flex-col-stretch': 'flex-col items-stretch',
'i-flex-col': 'inline-flex flex-col',
'i-flex-col-stretch': 'i-flex-col items-stretch',
'flex-1-hidden': 'flex-1 overflow-hidden',
'absolute-lt': 'absolute left-0 top-0',
'absolute-lb': 'absolute left-0 bottom-0',
'absolute-rt': 'absolute right-0 top-0',
'absolute-rb': 'absolute right-0 bottom-0',
'absolute-tl': 'absolute-lt',
'absolute-tr': 'absolute-rt',
'absolute-bl': 'absolute-lb',
'absolute-br': 'absolute-rb',
'absolute-center': 'absolute-lt flex-center wh-full',
'fixed-lt': 'fixed left-0 top-0',
'fixed-lb': 'fixed left-0 bottom-0',
'fixed-rt': 'fixed right-0 top-0',
'fixed-rb': 'fixed right-0 bottom-0',
'fixed-tl': 'fixed-lt',
'fixed-tr': 'fixed-rt',
'fixed-bl': 'fixed-lb',
'fixed-br': 'fixed-rb',
'fixed-center': 'fixed-lt flex-center wh-full',
'nowrap-hidden': 'whitespace-nowrap overflow-hidden',
'ellipsis-text': 'nowrap-hidden text-ellipsis',
'transition-base': 'transition-all duration-300 ease-in-out'
},
theme: {
colors: {
primary: 'rgb(var(--primary-color))',
primary_hover: 'rgb(var(--primary-color-hover))',
primary_pressed: 'rgb(var(--primary-color-pressed))',
primary_active: 'rgba(var(--primary-color-active),0.1)',
primary_1: 'rgb(var(--primary-color1))',
primary_2: 'rgb(var(--primary-color2))',
primary_3: 'rgb(var(--primary-color3))',
primary_4: 'rgb(var(--primary-color4))',
primary_5: 'rgb(var(--primary-color5))',
primary_6: 'rgb(var(--primary-color6))',
primary_7: 'rgb(var(--primary-color7))',
primary_8: 'rgb(var(--primary-color8))',
primary_9: 'rgb(var(--primary-color9))',
info: 'rgb(var(--info-color))',
info_hover: 'rgb(var(--info-color-hover))',
info_pressed: 'rgb(var(--info-color-pressed))',
info_active: 'rgb(var(--info-color-active),0.1)',
success: 'rgb(var(--success-color))',
success_hover: 'rgb(var(--success-color-hover))',
success_pressed: 'rgb(var(--success-color-pressed))',
success_active: 'rgb(var(--success-color-active),0.1)',
warning: 'rgb(var(--warning-color))',
warning_hover: 'rgb(var(--warning-color-hover))',
warning_pressed: 'rgb(var(--warning-color-pressed))',
warning_active: 'rgb(var(--warning-color-active),0.1)',
error: 'rgb(var(--error-color))',
error_hover: 'rgb(var(--error-color-hover))',
error_pressed: 'rgb(var(--error-color-pressed))',
error_active: 'rgb(var(--error-color-active),0.1)',
dark: '#18181c'
}
}
});
// import { defineConfig } from '@unocss/vite';
// import presetUno from '@unocss/preset-uno';
// import transformerDirectives from '@unocss/transformer-directives';
// export default defineConfig({
// content: {
// pipeline: {
// exclude: ['node_modules', 'dist', '.git', '.husky', '.vscode', 'public', 'build', 'mock', './stats.html']
// }
// },
// presets: [presetUno({ dark: 'class' })],
// transformers: [transformerDirectives()],
// shortcuts: {
// 'wh-full': 'w-full h-full',
// 'flex-center': 'flex justify-center items-center',
// 'flex-col-center': 'flex-center flex-col',
// 'flex-x-center': 'flex justify-center',
// 'flex-y-center': 'flex items-center',
// 'i-flex-center': 'inline-flex justify-center items-center',
// 'i-flex-x-center': 'inline-flex justify-center',
// 'i-flex-y-center': 'inline-flex items-center',
// 'flex-col': 'flex flex-col',
// 'flex-col-stretch': 'flex-col items-stretch',
// 'i-flex-col': 'inline-flex flex-col',
// 'i-flex-col-stretch': 'i-flex-col items-stretch',
// 'flex-1-hidden': 'flex-1 overflow-hidden',
// 'absolute-lt': 'absolute left-0 top-0',
// 'absolute-lb': 'absolute left-0 bottom-0',
// 'absolute-rt': 'absolute right-0 top-0',
// 'absolute-rb': 'absolute right-0 bottom-0',
// 'absolute-tl': 'absolute-lt',
// 'absolute-tr': 'absolute-rt',
// 'absolute-bl': 'absolute-lb',
// 'absolute-br': 'absolute-rb',
// 'absolute-center': 'absolute-lt flex-center wh-full',
// 'fixed-lt': 'fixed left-0 top-0',
// 'fixed-lb': 'fixed left-0 bottom-0',
// 'fixed-rt': 'fixed right-0 top-0',
// 'fixed-rb': 'fixed right-0 bottom-0',
// 'fixed-tl': 'fixed-lt',
// 'fixed-tr': 'fixed-rt',
// 'fixed-bl': 'fixed-lb',
// 'fixed-br': 'fixed-rb',
// 'fixed-center': 'fixed-lt flex-center wh-full',
// 'nowrap-hidden': 'whitespace-nowrap overflow-hidden',
// 'ellipsis-text': 'nowrap-hidden text-ellipsis',
// 'transition-base': 'transition-all duration-300 ease-in-out'
// },
// theme: {
// colors: {
// primary: 'rgb(var(--primary-color))',
// primary_hover: 'rgb(var(--primary-color-hover))',
// primary_pressed: 'rgb(var(--primary-color-pressed))',
// primary_active: 'rgba(var(--primary-color-active),0.1)',
// primary_1: 'rgb(var(--primary-color1))',
// primary_2: 'rgb(var(--primary-color2))',
// primary_3: 'rgb(var(--primary-color3))',
// primary_4: 'rgb(var(--primary-color4))',
// primary_5: 'rgb(var(--primary-color5))',
// primary_6: 'rgb(var(--primary-color6))',
// primary_7: 'rgb(var(--primary-color7))',
// primary_8: 'rgb(var(--primary-color8))',
// primary_9: 'rgb(var(--primary-color9))',
// info: 'rgb(var(--info-color))',
// info_hover: 'rgb(var(--info-color-hover))',
// info_pressed: 'rgb(var(--info-color-pressed))',
// info_active: 'rgb(var(--info-color-active),0.1)',
// success: 'rgb(var(--success-color))',
// success_hover: 'rgb(var(--success-color-hover))',
// success_pressed: 'rgb(var(--success-color-pressed))',
// success_active: 'rgb(var(--success-color-active),0.1)',
// warning: 'rgb(var(--warning-color))',
// warning_hover: 'rgb(var(--warning-color-hover))',
// warning_pressed: 'rgb(var(--warning-color-pressed))',
// warning_active: 'rgb(var(--warning-color-active),0.1)',
// error: 'rgb(var(--error-color))',
// error_hover: 'rgb(var(--error-color-hover))',
// error_pressed: 'rgb(var(--error-color-pressed))',
// error_active: 'rgb(var(--error-color-active),0.1)',
// dark: '#18181c'
// }
// }
// });