A stub implementation providing basic color tokens and utility functions for the ODS (Orange Design System) color palette, intended for development and testing purposes. ## Key Components - **`colorTokens`** - Constant object containing core color definitions including primary, secondary, background, surface, text variants, and border colors - **`getColorValue()`** - Utility function that returns color values based on token path strings, with fallback logic for primary colors ## Usage Example ```typescript import { colorTokens, getColorValue } from './ods-color-tokens-stub'; // Access color tokens directly const primaryColor = colorTokens.primary; // '#FFC008' const textColor = colorTokens.text.primary; // '#161616' // Use utility function for dynamic color retrieval const dynamicColor = getColorValue('primary.main'); // '#FFC008' const fallbackColor = getColorValue('unknown.token'); // '#161616' // Example usage in styled components const buttonStyles = { backgroundColor: colorTokens.primary, color: colorTokens.text.inverse, border: `1px solid ${colorTokens.border}` }; ``` This stub provides a lightweight color system foundation that can be easily replaced with the full ODS implementation while maintaining consistent interfaces for development workflows.