-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
38 lines (37 loc) · 1.09 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
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors');
/** @type {import("@types/tailwindcss/tailwind-config").TailwindConfig } */
module.exports = {
darkMode: 'class',
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['"Inter var"', ...defaultTheme.fontFamily.sans],
},
colors: {
primary: colors.purple[500],
spotify: '#1DB954'
},
zIndex: {
'-10': '-10',
},
keyframes: {
'wiggle': {
'0%, 100%': { transform: 'rotate(5deg)', 'transform-origin': 'right bottom' },
'50%': { transform: 'rotate(30deg)', 'transform-origin': 'right bottom' },
},
},
animation: {
'wiggle': 'wiggle 1s ease-in-out infinite',
'spin-vinyl': 'spin 2s linear infinite',
}
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/aspect-ratio'),
],
}