15 lines
449 B
CSS

@import './styles/avanza-utilities.css';
/* Import avanza-ui theme (standalone CSS in packages/avanza-ui) */
@import '../../avanza-ui/src/styles/globals.css';
@import '../../avanza-ui/src/styles/studio-theme.css';
/* small design tokens to match AvanzaCast palette */
:root{
--surface-50: #f8fafc;
--surface-900: #0f172a;
}
.bg-surface-50{ background-color: var(--surface-50); }
.dark .bg-surface-900{ background-color: var(--surface-900); }