mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-02-05 11:48:45 -06:00
- Update mobile pubspec.yaml version - Add brand colors to Tailwind config - Update .gitignore to exclude build artifacts and temporary files
30 lines
733 B
JavaScript
30 lines
733 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./app/templates/**/*.html',
|
|
'./app/static/src/**/*.js',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'primary': '#4A90E2',
|
|
'primary-dark': '#3b82f6',
|
|
'secondary': '#50E3C2',
|
|
'secondary-dark': '#06b6d4',
|
|
'background-light': '#F7F9FB',
|
|
'background-dark': '#1A202C',
|
|
'card-light': '#FFFFFF',
|
|
'card-dark': '#2D3748',
|
|
'text-light': '#2D3748',
|
|
'text-dark': '#E2E8F0',
|
|
'text-muted-light': '#A0AEC0',
|
|
'text-muted-dark': '#718096',
|
|
'border-light': '#E2E8F0',
|
|
'border-dark': '#4A5568',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|