From 2d85a280e86d4509ff6a05ef1e2e569e0741c858 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 21:16:15 +0000 Subject: [PATCH] Switch to version 1: remove docs/THEME_AND_STYLING.md --- docs/THEME_AND_STYLING.md | 521 -------------------------------------- 1 file changed, 521 deletions(-) delete mode 100644 docs/THEME_AND_STYLING.md diff --git a/docs/THEME_AND_STYLING.md b/docs/THEME_AND_STYLING.md deleted file mode 100644 index 20e85dc..0000000 --- a/docs/THEME_AND_STYLING.md +++ /dev/null @@ -1,521 +0,0 @@ -# Theme and Styling Standards - -This document covers the centralized theme system, color theming, and styling patterns used throughout the component library. - -## Theme Provider System - -All sections and components use a centralized ThemeProvider to maintain consistent styling across the entire site. - -### Location & Setup - -**Import:** -```tsx -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -``` - -**Usage:** Wrap the entire app/page (not individual sections) in a **single** ThemeProvider: - -```tsx -export default function Page() { - return ( - - - -