mirror of
https://github.com/RealKai42/qwerty-learner.git
synced 2026-04-05 06:19:08 +08:00
33 lines
612 B
JavaScript
33 lines
612 B
JavaScript
const colors = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'blue-gray': colors.blueGray,
|
|
},
|
|
transitionDuration: {
|
|
0: '0ms',
|
|
},
|
|
padding: {
|
|
0.8: '0.2rem',
|
|
},
|
|
},
|
|
borderRadius: {
|
|
large: '0.75rem',
|
|
lg: '0.5rem',
|
|
md: '0.375rem',
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {
|
|
visibility: ['hover', 'group-hover'],
|
|
textOpacity: ['dark'],
|
|
backgroundOpacity: ['dark'],
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|