Files
ai-toolkit/ui/tailwind.config.ts

46 lines
1006 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',
},
yellow: {
950: '#1a1203',
900: '#2a1c05',
800: '#3a2607',
700: '#5a3a0b',
600: '#7a4e0f',
500: '#f59e0b', // deeper than base; good for hover on dark
400: '#fbbf24', // your base
300: '#fcd34d',
200: '#fde68a',
100: '#fef3c7',
50: '#fffbeb',
},
},
},
},
plugins: [],
};
export default config;