flow-funding/tailwind.config.ts

24 lines
460 B
TypeScript

import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
flow: {
primary: '#3B82F6',
secondary: '#10B981',
accent: '#8B5CF6',
threshold: '#F59E0B',
},
},
},
},
plugins: [],
}
export default config