chat-ui / tailwind.config.cjs
nsarrazin's picture
nsarrazin HF staff
Added ChatUI branding & put theming behind an env variable (#298)
5d07536 unverified
raw history blame
No virus
661 Bytes
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
import dotenv from "dotenv";
dotenv.config({ path: "./.env" });
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
primary: colors[process.env.PUBLIC_APP_COLOR],
},
// fontFamily: {
// sans: ['"Inter"', ...defaultTheme.fontFamily.sans]
// },
fontSize: {
xxs: "0.625rem",
smd: "0.94rem",
},
},
},
plugins: [
require("tailwind-scrollbar")({ nocompatible: true }),
require("@tailwindcss/typography"),
],
};