13 lines
222 B
JavaScript
13 lines
222 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: ['./index.html'],
|
|
theme: {
|
|
extend: {
|
|
textColor: {
|
|
heading: '#1e293b',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |