prepare layout
This commit is contained in:
25
tailwind.config.js
Normal file
25
tailwind.config.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/** @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',
|
||||
},
|
||||
}),
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user