19 lines
416 B
JavaScript
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: [],
|
|
};
|