14 lines
No EOL
212 B
TypeScript
14 lines
No EOL
212 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
export default {
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
neutral: {
|
|
950: '#0a0a0a'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} satisfies Config |