forked from hyperledger-iroha/iroha-2-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuno.config.ts
More file actions
29 lines (27 loc) · 752 Bytes
/
uno.config.ts
File metadata and controls
29 lines (27 loc) · 752 Bytes
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
import { defineConfig } from 'unocss'
import transformerDirectives from '@unocss/transformer-directives'
export default defineConfig({
theme: {
colors: {
vp: {
brand: {
1: 'var(--vp-c-brand-1)',
2: 'var(--vp-c-brand-2)',
3: 'var(--vp-c-brand-3)',
soft: 'var(--vp-c-brand-soft)',
},
bg: {
DEFAULT: 'var(--vp-c-bg)',
alt: 'var(--vp-c-bg-alt)',
elv: 'var(--vp-c-bg-elv)',
soft: 'var(--vp-c-bg-soft)',
},
},
},
boxShadow: {
'elevation-btn':
'0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12)',
},
},
transformers: [transformerDirectives()],
})