timetracker/frontend/tailwind.config.js
hhftechnologies c8f5379289 update
2024-11-25 23:16:17 +05:30

24 lines
No EOL
536 B
JavaScript

module.exports = {
purge: ['./index.html', './src/**/*.{js,jsx,ts,tsx,vue}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
jetbrains: ['JetBrains Mono', 'monospace'], // Missing closing brace
},
colors: {
indigo: {
light: '#b3bcf5',
DEFAULT: '#5c6ac4',
dark: '#202e78',
},
green: {
light: '#6fcf97',
DEFAULT: '#27ae60',
dark: '#219653',
},
},
},
},
plugins: [],
}