Files
spectra-lab/tailwind.config.js
Chen Gu 04d6aebe59
All checks were successful
Deploy / deploy (push) Successful in 0s
feat: migrate spectra lab to tailwind responsive system
2026-04-23 14:15:32 +08:00

19 lines
416 B
JavaScript

module.exports = {
content: ['./index.html', './app.js'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'sans-serif'],
serif: ['Noto Serif SC', 'Songti SC', 'serif'],
},
colors: {
ink: '#151515',
},
boxShadow: {
soft: '0 26px 80px rgba(0,0,0,0.26)',
},
},
},
plugins: [],
};