-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
56 lines (56 loc) · 1.58 KB
/
tailwind.config.js
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
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./index.html', 'splashscreen.html',
'./src/**/*.{vue,js,ts,jsx,tsx}'
],
theme: {
colors: {
// Build your palette here
transparent: 'transparent',
current: 'currentColor',
gray: colors.neutral,
red: colors.red,
blue: colors.sky,
yellow: colors.amber,
purple: colors.purple,
pink: colors.pink
},
extend: {
animation: {
marquee: 'marquee 15s linear infinite',
marquee2: 'marquee2 15s linear infinite'
},
transitionProperty: {
width: 'width'
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' }
},
marquee2: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0%)' }
}
}
}
},
plugins: [require('@vueform/slider/tailwind'), require('daisyui'), require('tailwind-scrollbar'), require('@tailwindcss/line-clamp')],
daisyui: {
styled: true,
themes: true,
base: true,
utils: true,
logs: true,
rtl: false
},
screens: {
xs: { max: '575px' }, // Mobile (iPhone 3 - iPhone XS Max).
sm: { min: '576px', max: '897px' }, // Mobile (matches max: iPhone 11 Pro Max landscape @ 896px).
md: { min: '898px', max: '1199px' }, // Tablet (matches max: iPad Pro @ 1112px).
lg: { min: '1200px' }, // Desktop smallest.
xl: { min: '1159px' }, // Desktop wide.
xxl: { min: '1359px' } // Desktop widescreen.
}
}