-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
45 lines (42 loc) · 885 Bytes
/
tailwind.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
import type { Config } from 'tailwindcss'
import * as Animated from 'tailwindcss-animatecss'
const Tailwind: Config = {
darkMode: 'class',
content: [
'./src/**/*.html',
'./src/**/*.vue',
'./node_modules/primevue/**/*.{vue,js,ts,jsx,tsx}'
],
theme: {
extend: {
colors: {
'mb-blue': '#0084ff',
'mb-blue-h': '#0866ff',
'mb-gray': '#e4e6eb',
'mb-gray-h': '#d0d2d6',
'mb-gray-2': '#050505',
'mb-secondary': '#65676B'
}
},
minWidth: {
xxs: '160px',
xs: '320px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px'
},
maxWidth: {
'1/2': '50%',
'2/3': '66.666667%',
xxs: '160px',
xs: '320px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px'
}
},
plugins: [Animated]
}
export default Tailwind