mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-01-26 16:39:47 +00:00
32 lines
634 B
TypeScript
32 lines
634 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;
|