-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (45 loc) · 1.01 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
// const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
darkMode: 'class',
content: [
'./pages/**/*.vue',
'./layouts/**/*.vue',
'./components/**/*.vue',
],
theme: {
extend: {
animation: {
'spin-slow': 'spin 20s linear infinite',
},
fontFamily: {
sans: ['Poppins', 'sans-serif'],
serif: ['Playfair'],
},
transitionTimingFunction: {
'cubic-bezier': 'cubic-bezier(0.29, 0, 0.01, 1)',
'cubic-bezier-elastic': 'cubic-bezier(0.68, -0.55, 0.265, 1.55)'
},
colors: {
base: {
DEFAULT: '#fbfcfd',
hover: '#f7f9fb',
},
primary: {
// DEFAULT: '#F2FE71',
// hover: '#F2FE71',
DEFAULT: '#b8d6ff',
hover: '#b8d6ff',
},
gold: {
DEFAULT: '#c5a366',
hover: '#e1b970',
},
silver: {
DEFAULT: '#FFFFEE',
hover: '#FFFFEE',
},
},
}
},
variants: {},
}