25 lines
490 B
JavaScript
25 lines
490 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const { createThemes } = require('@shadcn/ui');
|
|
|
|
module.exports = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx}',
|
|
'./pages/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
createThemes({
|
|
light: {
|
|
background: '#ffffff',
|
|
foreground: '#171717',
|
|
},
|
|
dark: {
|
|
background: '#0a0a0a',
|
|
foreground: '#ededed',
|
|
},
|
|
}),
|
|
],
|
|
} |