-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
executable file
·58 lines (51 loc) · 1.08 KB
/
Copy pathtailwind.config.js
File metadata and controls
executable file
·58 lines (51 loc) · 1.08 KB
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
57
module.exports = {
important: true,
mode: 'jit',
content: [
"./src/**/*.{html,js,jsx}",
"./src/**/*.css",
"./src/**/*.json"
],
theme: {
extend: {
screen: {
'short': { 'raw': '(max-height: 400px)' },
'tall': { 'raw': '(max-height: 900px)' }
},
animation: {
'spin-slow': 'spin 3s linear infinite'
},
backgroundImage: {
'dark-wood': "url('./Backgrounds/wood-bg.jpg')",
'cork-board': "url('./Backgrounds/note-board-bg.jpg')",
'note-paper': "url('./Backgrounds/note-paper-bg.jpg')",
'marble-chess-board': "url('./Backgrounds/marble-chess-bg.jpeg')",
},
keyframes: {
spin: {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(360deg)' }
}
},
colors: {
'list-marker': '#FFEE58',
},
fontSize: {
'2xl': '1.5rem',
},
brightness: {
'75': '.75',
},
},
},
variants: {
extend: {
animation: ['hover', 'focus']
}
},
plugins: [
require('tailwind-scrollbar')
],
safelist: [
]
}