mirror of
https://github.com/open-webui/extension
synced 2025-06-26 18:25:58 +00:00
26 lines
581 B
JavaScript
26 lines
581 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
gray: {
|
|
50: "#f9f9f9",
|
|
100: "#ececec",
|
|
200: "#e3e3e3",
|
|
300: "#cdcdcd",
|
|
400: "#b4b4b4",
|
|
500: "#9b9b9b",
|
|
600: "#676767",
|
|
700: "#4e4e4e",
|
|
800: "#333",
|
|
850: "#262626",
|
|
900: "var(--color-gray-900, #171717)",
|
|
950: "var(--color-gray-950, #0d0d0d)",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|