AppFlowy/frontend/appflowy_web_app/tailwind.config.cjs
Kilu.He c97ece5e81
chore: web and tauri project (#4996)
* chore: web and tauri project

fix: clippy

* fix: update version
2024-04-03 19:25:54 +08:00

21 lines
473 B
JavaScript

const colors = require('./style-dictionary/tailwind/colors.cjs');
const boxShadow = require('./style-dictionary/tailwind/box-shadow.cjs');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
'./node_modules/react-tailwindcss-datepicker/dist/index.esm.js',
],
important: '#body',
darkMode: 'class',
theme: {
extend: {
colors,
boxShadow,
},
},
plugins: [],
};