feat: migrate spectra lab to tailwind responsive system
All checks were successful
Deploy / deploy (push) Successful in 0s

This commit is contained in:
Chen Gu
2026-04-23 14:15:32 +08:00
parent ee4c172b34
commit 04d6aebe59
7 changed files with 1356 additions and 909 deletions

18
tailwind.config.js Normal file
View File

@@ -0,0 +1,18 @@
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: [],
};