forked from EcoPasteHub/EcoPaste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuno.config.ts
39 lines (38 loc) · 889 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
import presetRemToPx from "@unocss/preset-rem-to-px";
import {
defineConfig,
presetIcons,
presetUno,
transformerDirectives,
transformerVariantGroup,
} from "unocss";
export default defineConfig({
presets: [
presetUno(),
presetIcons(),
presetRemToPx({
baseFontSize: 4,
}),
],
transformers: [
transformerVariantGroup(),
transformerDirectives({
applyVariable: ["--uno"],
}),
],
rules: [["outline-none", { outline: "none" }]],
shortcuts: [
[/^bg-(\d+)$/, ([, d]) => `bg-[var(--color-bg-${d})]`],
[/^color-(\d+)$/, ([, d]) => `text-[var(--color-text-${d})]`],
[/^b-color-(\d+)$/, ([, d]) => `b-[var(--color-border-${d})]`],
[/^(.*)-primary-(\d+)$/, ([, s, d]) => `${s}-[var(--ant-blue-${d})]`],
],
theme: {
colors: {
primary: "var(--ant-blue)",
success: "var(--ant-green)",
danger: "var(--ant-red)",
gold: "var(--ant-gold)",
},
},
});