-
-
Notifications
You must be signed in to change notification settings - Fork 186
/
unocss.config.ts
45 lines (42 loc) · 1.69 KB
/
unocss.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
import type { Theme } from '@unocss/preset-mini'
import { defineConfig, presetAttributify, presetIcons, presetUno } from 'unocss'
export default defineConfig({
shortcuts: [
{
'btn': 'px-4 py-1 rounded inline-block bg-primary text-white cursor-pointer tracking-wide op90 hover:op100 disabled:cursor-default disabled:bg-gray-600 disabled:!op50 disabled:pointer-events-none',
'icon-btn': 'text-1.2em cursor-pointer select-none opacity-75 transition duration-200 ease-in-out hover:opacity-100 hover:text-primary disabled:pointer-events-none',
'square-btn': 'flex flex-gap-2 items-center border border-base px2 py1 relative !outline-none',
'square-btn-mark': 'absolute h-2 w-2 bg-primary -right-0.2rem -top-0.2rem',
'bg-base': 'bg-white dark:bg-[#121212]',
'bg-overlay': 'bg-[#eee]:50 dark:bg-[#222]:50',
'bg-header': 'bg-gray-500:5',
'bg-active': 'bg-gray-500:8',
'bg-hover': 'bg-gray-500:20',
'border-base': 'border-gray-400:10',
'tab-button': 'font-light op50 hover:op80 h-full px-4',
'tab-button-active': 'op100 bg-gray-500:10',
},
[/^(flex|grid)-center/g, () => 'justify-center items-center'],
[/^(flex|grid)-x-center/g, () => 'justify-center'],
[/^(flex|grid)-y-center/g, () => 'items-center'],
],
rules: [
['max-h-screen', { 'max-height': 'calc(var(--vh, 1vh) * 100)' }],
['h-screen', { height: 'calc(var(--vh, 1vh) * 100)' }],
],
theme: <Theme>{
colors: {
'ok': 'var(--c-ok)',
'primary': 'var(--c-primary)',
'primary-deep': 'var(--c-primary-deep)',
'mis': 'var(--c-mis)',
},
},
presets: [
presetUno(),
presetAttributify(),
presetIcons({
scale: 1.2,
}),
],
})