16 lines
280 B
JavaScript
16 lines
280 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{html,ts}"],
|
|
theme: {
|
|
extend: {
|
|
"backgroundColor": {
|
|
"primary": "#EAE6E1",
|
|
},
|
|
"textColor": {
|
|
"primary": "#513C2F",
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|