17 lines
347 B
JavaScript
17 lines
347 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./templates/**/*.html"],
|
||
|
theme: {
|
||
|
colors: {
|
||
|
transparent: 'transparent',
|
||
|
current: 'currentColor',
|
||
|
white: '#ffffff',
|
||
|
primary: "#601237",
|
||
|
background: "#290718",
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
|
||
|
}
|
||
|
|