-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (35 loc) · 926 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
module.exports = {
theme: {
extend: {
colors: {
starwarsYellow: '#FFE81F',
},
padding: {
lg: '9rem',
},
opacity: {
'image-bg': '.95',
},
backgroundImage: (theme) => ({
'profile-background': "url('https://images.unsplash.com/photo-1588609889709-09a65ef625d9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format')",
}),
},
},
variants: {},
plugins: [],
purge: {
// Filenames to scan for classes
content: [
'./src/**/*.html',
'./src/**/*.js',
'./src/**/*.jsx',
'./src/**/*.ts',
'./src/**/*.tsx',
],
// PurgeCSS options
options: {
// Whitelist specific selectors by name
// whitelist: [],
},
},
};