refactor: flatten Pastel routes by removing intermediate palettes and accessibility paths

- Move sub-routes from /pastel/palettes/* and /pastel/accessibility/* to direct children of /pastel
- Update AppSidebar navigation links
- Update Pastel Navbar and Footer links
- Update Tailwind source directives in pastel/globals.css
- Remove intermediate page files
This commit is contained in:
2026-02-23 08:18:44 +01:00
parent 3a100f8fde
commit 7806bcbede
12 changed files with 19 additions and 186 deletions

View File

@@ -6,16 +6,14 @@
@source "../components/providers/*.{js,ts,jsx,tsx}";
@source "../components/tools/*.{js,ts,jsx,tsx}";
@source "../components/ui/*.{js,ts,jsx,tsx}";
@source "./playground/*.{js,ts,jsx,tsx}";
@source "./palettes/*.{js,ts,jsx,tsx}";
@source "./palettes/distinct/*.{js,ts,jsx,tsx}";
@source "./palettes/gradient/*.{js,ts,jsx,tsx}";
@source "./palettes/harmony/*.{js,ts,jsx,tsx}";
@source "./distinct/*.{js,ts,jsx,tsx}";
@source "./gradient/*.{js,ts,jsx,tsx}";
@source "./harmony/*.{js,ts,jsx,tsx}";
@source "./names/*.{js,ts,jsx,tsx}";
@source "./batch/*.{js,ts,jsx,tsx}";
@source "./accessibility/*.{js,ts,jsx,tsx}";
@source "./accessibility/colorblind/*.{js,ts,jsx,tsx}";
@source "./accessibility/contrast/*.{js,ts,jsx,tsx}";
@source "./colorblind/*.{js,ts,jsx,tsx}";
@source "./contrast/*.{js,ts,jsx,tsx}";
@source "./textcolor/*.{js,ts,jsx,tsx}";
@source "*.{js,ts,jsx,tsx}";
@custom-variant dark (&:is(.dark *));