Files
breakpilot-core/pitch-deck/tailwind.config.ts
Benjamin Boenisch f2a24d7341 feat: add pitch-deck service to core infrastructure
Migrated pitch-deck from breakpilot-pwa to breakpilot-core.
Container: bp-core-pitch-deck on port 3012.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 19:44:27 +01:00

30 lines
569 B
TypeScript

import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
colors: {
pitch: {
dark: '#0a0a1a',
card: 'rgba(255, 255, 255, 0.08)',
border: 'rgba(255, 255, 255, 0.1)',
},
},
backdropBlur: {
xs: '2px',
},
},
},
plugins: [],
}
export default config