mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-09-14 11:00:05 +00:00
* 🎨 feat: Add Versioned Theme Foundation * 🧩 fix: Keep Theme-Aware Chip Actions Consistent * 🎛️ fix: Preserve Default Theme Geometry * 🪪 fix: Keep Theme Identity in Sync * 🧭 docs: Define Theme Styling Policy * 🧹 chore: Sort Theme Imports * 🧵 fix: Preserve Theme Compatibility Contracts * 🛡️ fix: Harden Theme Compatibility Boundaries * 🧵 fix: Publish Theme Appearance Preset * 🐳 fix: Include Theme Preset in Docker Build * 🪢 fix: Preserve Legacy Theme Compatibility * 🧭 fix: Harden Theme Lifecycle Boundaries * 🧱 fix: Align Theme Appearance Defaults * 🧬 fix: Record Persisted Theme Provenance * 🧭 fix: Preserve Theme Transition State * 🧷 fix: Preserve Legacy Theme Contracts
15 lines
414 B
JavaScript
15 lines
414 B
JavaScript
const { createTailwindColors } = require('./src/theme/utils/createTailwindColors.js');
|
|
const libreChatTailwindPreset = require('./tailwind.preset.cjs');
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{js,jsx,ts,tsx}'],
|
|
darkMode: ['class'],
|
|
presets: [libreChatTailwindPreset],
|
|
theme: {
|
|
extend: {
|
|
colors: createTailwindColors(),
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|