Spaces:
Sleeping
Sleeping
File size: 1,007 Bytes
faca43f d54ea4b faca43f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
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],
'ai-chat': '#1650a8',
'user-chat': '#142F69',
'privacy-banner': '#142343',
'prompts': '#394C75',
'mini-sidemenu': '#0d1830',
'message': '#1e418b',
'chat': '#0e1b35',
'sidebar': '#142343',
'mithril-border': '#196398',
'login': '#052448',
'mithril-yellow': '#f5c012',
'darkSidebar': '#121a28',
'lightSidebar': '#fbfcfd',
'darkBackground': '#111827',
'bannerBack': '#f3f4f6',
},
fontSize: {
xxs: "0.625rem",
smd: "0.94rem",
},
},
},
plugins: [
require("tailwind-scrollbar")({ nocompatible: true }),
require("@tailwindcss/typography"),
],
};
|