23 lines
398 B
JavaScript
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: [],
|
|
};
|