14 lines
268 B
TypeScript
14 lines
268 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
healthGreen: '#2D9CDB',
|
|
medicalBlue: '#0F4C81'
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
} satisfies Config
|