Rocky_Mountain_Vending/.pnpm-store/v10/files/19/87c2dc04772c575c16118e580cef92b8847c744c3ad039656fc5a35b419e9dc6480e4c72e1f2f13593a869fe094a9dfa299a7094a74c3fc0fb28d589cd4065
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

35 lines
No EOL
708 B
Text

export interface FeedbackTheme {
/**
* Foreground color (i.e. text color)
*/
foreground?: string;
/**
* Background color for surfaces
*/
background?: string;
/**
* Foreground color for accented elements
*/
accentForeground?: string;
/**
* Background color for accented elements
*/
accentBackground?: string;
/**
* Success color
*/
successColor?: string;
/**
* Error color
*/
errorColor?: string;
/**
* Box shadow for floating elements
*/
boxShadow?: string;
/**
* Styles for focused interactive components
*/
outline?: string;
}
//# sourceMappingURL=theme.d.ts.map