lingjing/tailwind.config.js
2026-02-23 09:51:43 +00:00

23 lines
398 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,jsx}',
'./components/**/*.{js,jsx}',
],
theme: {
extend: {
colors: {
bg: '#fafafa',
fg: '#171717',
muted: '#737373',
card: '#ffffff',
border: '#e5e5e5',
},
borderRadius: {
xl2: '1rem',
},
},
},
plugins: [],
};