mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-03 06:10:49 +08:00
35 lines
738 B
JavaScript
35 lines
738 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/renderer/index.html', './src/renderer/**/*.{vue,js,ts,jsx,tsx}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#22c55e',
|
|
light: '#22c55e',
|
|
dark: '#1eb154ff'
|
|
},
|
|
secondary: {
|
|
DEFAULT: '#6c757d',
|
|
light: '#8c959e',
|
|
dark: '#495057'
|
|
},
|
|
dark: {
|
|
DEFAULT: '#000',
|
|
100: '#161616',
|
|
200: '#2d2d2d',
|
|
300: '#3d3d3d'
|
|
},
|
|
light: {
|
|
DEFAULT: '#fff',
|
|
100: '#f8f9fa',
|
|
200: '#e9ecef',
|
|
300: '#dee2e6'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|