20 lines
488 B
TypeScript
20 lines
488 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
// We want each package to be responsible for its own content.
|
|
const config: Omit<Config, 'content'> = {
|
|
theme: {
|
|
extend: {
|
|
backgroundImage: {
|
|
'glow-conic':
|
|
'conic-gradient(from 180deg at 50% 50%, #2a8af6 0deg, #a853ba 180deg, #e92a67 360deg)',
|
|
},
|
|
colors: {
|
|
background: 'var(--background)',
|
|
foreground: 'var(--foreground)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
export default config;
|