# 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 (