mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
23 lines
487 B
JavaScript
23 lines
487 B
JavaScript
const BLOG = require('./blog.config')
|
|
|
|
module.exports = {
|
|
purge: ['./pages/**/*.js', './components/**/*.js', './layouts/**/*.js'],
|
|
darkMode: BLOG.appearance === 'class' ? 'media' : 'class', // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
day: {
|
|
DEFAULT: BLOG.lightBackground || '#ffffff'
|
|
},
|
|
night: {
|
|
DEFAULT: BLOG.darkBackground || '#111827'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
variants: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
}
|