mirror of
https://github.com/marcogll/noire_landing.git
synced 2026-03-15 08:25:03 +00:00
21 lines
279 B
JavaScript
21 lines
279 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
prefix: 'tw-',
|
|
important: false,
|
|
content: [
|
|
"**/*.{html, jsx, js}",
|
|
"**/*.js",
|
|
"**/*.html",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: "#000",
|
|
secondary: "#fff",
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|