Files
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

16 lines
595 B
JavaScript

'use strict';
const semanticTokens = {
colors: {
"chakra-body-text": { _light: "gray.800", _dark: "whiteAlpha.900" },
"chakra-body-bg": { _light: "white", _dark: "gray.800" },
"chakra-border-color": { _light: "gray.200", _dark: "whiteAlpha.300" },
"chakra-inverse-text": { _light: "white", _dark: "gray.800" },
"chakra-subtle-bg": { _light: "gray.100", _dark: "gray.700" },
"chakra-subtle-text": { _light: "gray.600", _dark: "gray.400" },
"chakra-placeholder-color": { _light: "gray.500", _dark: "whiteAlpha.400" }
}
};
exports.semanticTokens = semanticTokens;