-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
36 lines (36 loc) · 1016 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
screens: {
'm-lg': { max: '1024px' },
},
spacing: {
'65': '16.25rem',
'75': '18.75rem',
'83': '20.75rem',
},
animation: {
'text-flashing': 'text-flashing 4s linear 0s infinite both',
},
keyframes: {
'text-flashing': {
'0%, 100%': { color: '#55f5c7' },
'25%': { color: '#fff360' },
'50%': { color: '#ff72cd' },
'75%': { color: '#948aff' },
}
},
rotate: {
'30': '30deg',
'60': '60deg',
}
},
},
plugins: [
require('@tailwindcss/line-clamp'),
],
prefix: 'tw-'
}