mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-02 09:37:23 +08:00
31 lines
659 B
JavaScript
31 lines
659 B
JavaScript
![]() |
const colors = require('tailwindcss/colors')
|
||
|
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
'./packages/renderer/index.html',
|
||
|
'./packages/renderer/src/**/*.{vue,js,ts,jsx,tsx}',
|
||
|
],
|
||
|
darkMode: 'media',
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
// brand: {
|
||
|
// 50: '#f5f7fe',
|
||
|
// 100: '#ebeffd',
|
||
|
// 200: '#ccd7fa',
|
||
|
// 300: '#adbff7',
|
||
|
// 400: '#708ef0',
|
||
|
// 500: '#335eea',
|
||
|
// 600: '#2e55d3',
|
||
|
// 700: '#2647b0',
|
||
|
// 800: '#1f388c',
|
||
|
// 900: '#192e73',
|
||
|
// },
|
||
|
brand: colors.blue,
|
||
|
gray: colors.neutral,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
variants: {},
|
||
|
}
|