This commit is contained in:
wq.chu
2021-11-15 15:22:34 +08:00
commit 4e027f81e6
44 changed files with 14458 additions and 0 deletions

View 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: [],
},
},
}