-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathuno.config.ts
41 lines (40 loc) · 930 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
40
41
import { defineConfig, presetIcons, presetWebFonts, presetUno } from 'unocss'
export default defineConfig({
theme: {
colors: {
cBackground: '#161616',
cPrimary: '#151515',
cSecondary: '#2E2E2E',
cTertiary: '#A8A8A8',
cStrokeBox: '#767676',
cWhite: '#EFEFEF',
cGreenText: '#35D78B',
cGreenButton: '#2F8F62',
cGreenStroke: '#33CA86',
cRed: '#EC3F3F'
},
dropShadow: {
'customShadow': '0 0 48px rgba(115, 134, 125, 0.30)',
}
},
shortcuts: {
'title-gradient':
'bg-gradient-to-r text-transparent bg-clip-text from-[#EEF1F0] to-[#555555]'
},
presets: [
presetUno(),
presetWebFonts({
provider: 'google',
fonts: {
inter: 'Inter'
}
}),
presetIcons({
cdn: 'https://esm.sh/',
extraProperties: {
display: 'inline-block',
'vertical-align': 'middle'
}
})
]
})