mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-03 14:20:50 +08:00
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
highlight: 'var(--highlight-color)',
|
|
text: 'var(--text-color)',
|
|
secondary: 'var(--text-secondary)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|