mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-02-10 13:33:18 +08:00
19 lines
422 B
JavaScript
19 lines
422 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const colors = require('tailwindcss/colors')
|
|
const pickedColors = require('./scripts/pickedColors.js')
|
|
|
|
module.exports = {
|
|
content: ['./index.html', './**/*.{vue,js,ts,jsx,tsx}'],
|
|
darkMode: 'media',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
...pickedColors,
|
|
brand: colors.blue,
|
|
gray: colors.neutral,
|
|
},
|
|
},
|
|
},
|
|
variants: {},
|
|
}
|