init
This commit is contained in:
37
lama_cleaner/app/tailwind.config.js
Normal file
37
lama_cleaner/app/tailwind.config.js
Normal file
@@ -0,0 +1,37 @@
|
||||
module.exports = {
|
||||
mode: 'jit',
|
||||
theme: {
|
||||
extend: {
|
||||
animation: {
|
||||
'pulse-fast': 'pulse 0.7s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
||||
},
|
||||
colors: {
|
||||
primary: '#BDFF01',
|
||||
},
|
||||
keyframes: {
|
||||
pulse: {
|
||||
'0%, 100%': { opacity: 0.8 },
|
||||
'50%': { opacity: 0.7 },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
variants: {},
|
||||
plugins: [],
|
||||
purge: {
|
||||
// Filenames to scan for classes
|
||||
content: [
|
||||
'./src/**/*.html',
|
||||
'./src/**/*.js',
|
||||
'./src/**/*.jsx',
|
||||
'./src/**/*.ts',
|
||||
'./src/**/*.tsx',
|
||||
'./public/index.html',
|
||||
],
|
||||
// Options passed to PurgeCSS
|
||||
options: {
|
||||
// Whitelist specific selectors by name
|
||||
// safelist: [],
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user