From 44897b548ad292139d1f3de4442de165c4e92b90 Mon Sep 17 00:00:00 2001 From: Poyraz Avsever Date: Wed, 22 Apr 2026 14:16:02 +0300 Subject: [PATCH] feat: export theme constants and objects from poyraz-ui --- src/lib/themes.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/lib/themes.ts b/src/lib/themes.ts index 9ce6eae..088b092 100644 --- a/src/lib/themes.ts +++ b/src/lib/themes.ts @@ -1,15 +1,3 @@ import { poyrazLightTheme, poyrazDarkTheme, poyrazThemes } from "poyraz-ui/themes"; -// You can customise themes by spreading and overriding variables: -// -// const customLight = { -// ...poyrazLightTheme, -// name: "custom-light", -// variables: { -// ...poyrazLightTheme.variables, -// "--poyraz-primary": "#2563eb", // blue-600 -// "--poyraz-primary-foreground": "#ffffff", -// }, -// }; - export { poyrazLightTheme, poyrazDarkTheme, poyrazThemes };