mirror of
https://github.com/juherr/kill-the-news.git
synced 2026-06-20 22:03:48 +00:00
3ed9d2ee22
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
28 lines
663 B
TypeScript
28 lines
663 B
TypeScript
// Main style exports file
|
|
// Combines all style components and re-exports them for easy imports
|
|
|
|
import { variables, lightModeTheme, fontImport } from "./variables";
|
|
import { layoutStyles } from "./layout";
|
|
import { componentStyles } from "./components";
|
|
import { utilityStyles } from "./utilities";
|
|
|
|
// Combine all style components into a single CSS string
|
|
export const designSystem = `
|
|
${variables}
|
|
${lightModeTheme}
|
|
${fontImport}
|
|
${layoutStyles}
|
|
${componentStyles}
|
|
${utilityStyles}
|
|
`;
|
|
|
|
// Re-export everything for modular usage if needed
|
|
export {
|
|
variables,
|
|
lightModeTheme,
|
|
fontImport,
|
|
layoutStyles,
|
|
componentStyles,
|
|
utilityStyles,
|
|
};
|