TypeScript · 597 bytes Raw Blame History
1 import type { Config } from 'tailwindcss'
2
3 const config: Config = {
4 content: [
5 './pages/**/*.{js,ts,jsx,tsx,mdx}',
6 './components/**/*.{js,ts,jsx,tsx,mdx}',
7 './app/**/*.{js,ts,jsx,tsx,mdx}',
8 ],
9 theme: {
10 extend: {
11 colors: {
12 amber: {
13 50: '#fffbeb',
14 100: '#fef3c7',
15 200: '#fde68a',
16 300: '#fcd34d',
17 400: '#fbbf24',
18 500: '#f59e0b',
19 600: '#d97706',
20 700: '#b45309',
21 800: '#92400e',
22 900: '#78350f',
23 },
24 },
25 },
26 },
27 plugins: [],
28 }
29
30 export default config