import type { DefaultTheme } from '../types'; const defaultThemeDark: DefaultTheme = { actionButtonColor: { cancel: '#888', default: '#4695eb', destructive: '#eb6868', }, cardBackgroundColor: '#111', lineColor: '#222', overlayBackgroundColor: 'rgba(0, 0, 0, 0.8)', textColor: '#ddd', titleTextColor: '#fff', }; export default defaultThemeDark;