Projekt_IO/Frontend/CatApp/tailwind.config.js
2024-01-21 23:49:36 +01:00

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: [],
}