(t)
| 21 | } |
| 22 | |
| 23 | export function themeToCSS(t) { |
| 24 | return { |
| 25 | name: t.name, |
| 26 | bg: t.bg, bg_surface: t.bg_surface, bg_hover: t.bg_hover, |
| 27 | fg: t.fg, fg_muted: t.fg_muted, |
| 28 | accent: t.accent, success: t.success, warning: t.warning, |
| 29 | error: t.error, info: t.info, border: t.border, |
| 30 | font_mono: t.font_mono, font_ui: t.font_ui, |
| 31 | font_size: t.font_size, radius: t.radius, spacing: t.spacing, |
| 32 | }; |
| 33 | } |
| 34 | |
| 35 | export function applyTheme(t) { |
| 36 | if (!t || !t.bg) return; |
no outgoing calls
no test coverage detected