Files
AlgerMusicPlayer/tailwind.config.js

35 lines
738 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/renderer/index.html', './src/renderer/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
2021-07-19 17:36:48 +08:00
theme: {
extend: {
colors: {
primary: {
2026-02-04 20:17:14 +08:00
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'
}
}
}
2021-07-19 17:36:48 +08:00
},
plugins: []
2024-05-21 10:16:30 +08:00
};