mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-02-05 04:59:56 +00:00
31 lines
633 B
TypeScript
31 lines
633 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
gray: {
|
|
950: "#0a0a0a",
|
|
900: "#171717",
|
|
800: "#262626",
|
|
700: "#404040",
|
|
600: "#525252",
|
|
500: "#737373",
|
|
400: "#a3a3a3",
|
|
300: "#d4d4d4",
|
|
200: "#e5e5e5",
|
|
100: "#f5f5f5",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config; |