-
Notifications
You must be signed in to change notification settings - Fork 0
/
uno.config.ts
62 lines (57 loc) · 1.58 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
import {
defineConfig,
presetUno,
presetAttributify,
presetIcons,
} from "unocss";
import transformerDirectives from "@unocss/transformer-directives";
import { THEME_CONFIG } from "./src/theme.config";
const {socials, themeStyle} = THEME_CONFIG;
// let foreground = "#2e405b";
// let background = "#ffffff";
let foreground = "#363636";
let background = "#fff";
if(THEME_CONFIG.themeStyle === 'dark') {
foreground = "#fff";
background = "#000";
}
export default defineConfig({
presets: [
presetUno({
dark: themeStyle === 'auto' ? 'media' : 'class',
}),
presetAttributify({ nonValuedAttribute: true }),
presetIcons({
scale: 1.2,
warn: true,
}),
],
theme: {
colors: {
foreground,
background
},
fontFamily: {
sans: '"Source Sans Pro","Roboto","Helvetica","Helvetica Neue","Source Han Sans SC","Source Han Sans TC","PingFang SC","PingFang HK","PingFang TC",sans-serif',
serif: '"HiraMinProN-W6","Source Han Serif CN","Source Han Serif SC","Source Han Serif TC",serif',
},
animation: {
keyframes: {
"fadein-down":
"{from {opacity: 0.1;transform: translateY(-20px);}to {opacity: 1;transform: translateY(0);}}",
"fadein-left":
"{from {opacity: 0.1;transform: translateX(20px);}to {opacity: 1;transform: translateX(0);}}",
},
},
},
shortcuts: [
['icon', 'inline-block '],
['post-title', 'text-5 font-bold lh-7.5 m-0'],
],
transformers: [
transformerDirectives(),
],
safelist: [
...socials.map((social) => `i-mdi-${social.name}`),
],
})