29 lines
708 B
TypeScript
29 lines
708 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}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'rmaps': {
|
|
primary: '#10b981', // Emerald green
|
|
secondary: '#6366f1', // Indigo
|
|
dark: '#0f172a', // Slate 900
|
|
light: '#f8fafc', // Slate 50
|
|
},
|
|
},
|
|
animation: {
|
|
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
|
|
'ping-slow': 'ping 2s cubic-bezier(0, 0, 0.2, 1) infinite',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|