16 lines
281 B
JavaScript
16 lines
281 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
dark: {
|
|
800: '#0f0f0f',
|
|
100: '#f6f6f6',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|