mirror of
https://github.com/AppFlowy-IO/AppFlowy-Web.git
synced 2025-08-06 19:20:25 +08:00
42 lines
840 B
JavaScript
42 lines
840 B
JavaScript
const colors = require('./tailwind/colors.cjs');
|
|
const boxShadow = require('./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,
|
|
borderRadius: {
|
|
100: '4px',
|
|
200: '6px',
|
|
300: '8px',
|
|
400: '12px',
|
|
500: '16px',
|
|
600: '20px',
|
|
},
|
|
padding: {
|
|
100: '4px',
|
|
200: '6px',
|
|
300: '8px',
|
|
400: '12px',
|
|
500: '16px',
|
|
600: '20px',
|
|
xs: '4px',
|
|
sm: '6px',
|
|
md: '12px',
|
|
lg: '16px',
|
|
xl: '20px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|