mirror of
https://github.com/fergalmoran/opengifame.git
synced 2026-02-18 22:15:47 +00:00
21 lines
451 B
JavaScript
21 lines
451 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
tofu: '#e8e3d9',
|
|
putty: '#d6ceb1',
|
|
oatmeal: '#ccc5b5',
|
|
almond: '#ab784e',
|
|
harvestwheat: '#dec5a5',
|
|
buff: '#edc594',
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/forms'), require('daisyui')],
|
|
};
|