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

36 lines
909 B
JavaScript

'use strict';
var index$1 = require('./components/index.cjs');
var index = require('./foundations/index.cjs');
var semanticTokens = require('./semantic-tokens.cjs');
var styles = require('./styles.cjs');
var isChakraTheme = require('./utils/is-chakra-theme.cjs');
const direction = "ltr";
const config = {
useSystemColorMode: false,
initialColorMode: "light",
cssVarPrefix: "chakra"
};
const theme = {
semanticTokens: semanticTokens.semanticTokens,
direction,
...index.foundations,
components: index$1.components,
styles: styles.styles,
config
};
const baseTheme = {
semanticTokens: semanticTokens.semanticTokens,
direction,
components: {},
...index.foundations,
styles: styles.styles,
config
};
exports.isChakraTheme = isChakraTheme.isChakraTheme;
exports.requiredChakraThemeKeys = isChakraTheme.requiredChakraThemeKeys;
exports.baseTheme = baseTheme;
exports.theme = theme;