| /** @type {import('tailwindcss').Config} */ | |
| export default { | |
| content: [ | |
| "./index.html", | |
| "./src/**/*.{vue,js,ts,jsx,tsx}", | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'theme-bg': 'var(--theme-bg)', | |
| 'theme-card': 'var(--theme-card)', | |
| 'theme-border': 'var(--theme-border)', | |
| 'theme-text': 'var(--theme-text)', | |
| 'theme-text-muted': 'var(--theme-text-muted)', | |
| 'theme-accent': 'var(--theme-accent)', | |
| 'sage-dark': '#0b1120', | |
| 'sage-card': '#1e293b', | |
| 'sage-border': '#334155', | |
| 'sage-accent': '#38bdf8', | |
| 'sage-purple': '#c084fc', | |
| }, | |
| backgroundImage: { | |
| 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', | |
| } | |
| }, | |
| }, | |
| plugins: [], | |
| } | |