mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-15 12:50:42 -07:00
- Added server configurations for local and production environments in `main.py`. - Removed outdated authentication and generation API documentation files. - Updated documentation structure to reflect the removal of deprecated API endpoints. - Adjusted links in the quick start and developer setup documentation to point to the new API reference. - Enhanced global CSS styles for improved theming support.
15 lines
356 B
CSS
15 lines
356 B
CSS
@import 'tailwindcss';
|
|
@import 'fumadocs-ui/css/neutral.css';
|
|
@import 'fumadocs-ui/css/preset.css';
|
|
@import 'fumadocs-openapi/css/preset.css';
|
|
|
|
:root {
|
|
--color-fd-primary: hsl(43, 50%, 50%);
|
|
--color-fd-primary-foreground: hsl(222.2, 47.4%, 11.2%);
|
|
}
|
|
|
|
.dark {
|
|
--color-fd-primary: hsl(43, 50%, 45%);
|
|
--color-fd-primary-foreground: hsl(0, 0%, 95%);
|
|
}
|