mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
14 lines
310 B
JavaScript
14 lines
310 B
JavaScript
|
|
const { createTailwindColors } = require('./src/theme/utils/createTailwindColors.js');
|
||
|
|
|
||
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
module.exports = {
|
||
|
|
content: ['./src/**/*.{js,jsx,ts,tsx}'],
|
||
|
|
darkMode: ['class'],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: createTailwindColors(),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|