18 lines
328 B
JavaScript
18 lines
328 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
slate: {
|
|
900: '#0b1220',
|
|
800: '#071827',
|
|
700: '#0f1720',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|