19 lines
300 B
JavaScript
19 lines
300 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
DM: ['DM Serif Display']
|
|
},
|
|
colors: {
|
|
waves: '#edb593',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|