2026-05-09 11:35:07 +08:00
|
|
|
/*
|
|
|
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Affero General Public License as
|
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
|
|
|
*/
|
feat(web/default): unified UI overhaul — Base UI migration, theme presets, rankings dashboard, and table toolbar refactor (#4633)
* 🎨 feat(web/default): add shadcn-style theme presets, radius prefs, and fix selection badges
Integrate the qn-platform–style OKLCH color system into the default frontend while keeping the existing blue-tinted dark tokens for the default theme. Add [data-theme-preset] palettes for seven named presets plus the default zinc-like scale, define [data-theme-radius] overrides so user radius beats preset --radius, and align the Tailwind @custom-variant dark helper with .dark usage.
Introduce ThemeCustomizationProvider to own preset and radius state, persist choices in cookies (theme-preset, theme-radius), and sync data-theme-preset / data-theme-radius on <html>. Wrap the tree in main.tsx.
Extend ConfigDrawer with theme preset swatches (scoped data-theme-preset) and radius previews wired to context; refactor swatch/card markup so selected CircleCheck badges sit outside clipped rows (remove outer overflow-hidden that hid the centered checkmark).
Add i18n keys for preset names, radius, and accessibility labels across en, zh, fr, ja, ru, vi.
* 🎨 fix(web): align segmented controls with theme radius tokens
- Replace hard-coded inner pill radii (rounded-[5px]) on dashboard chart
toolbars with radius-md so the active state follows --radius when users
change Radius in Theme Settings.
- Use nested radii consistent with TabsList/TabsTrigger: outer
rounded-lg (var(--radius)) and inner rounded-md (calc(var(--radius) - 2px))
so the track and active thumb stay concentric at small scales (e.g.
0.3rem) instead of a squared “focus” block inside a rounded shell.
- Apply the same pattern to pricing SegmentedControl and the segmented
groups in consumption-distribution-chart, model-charts, and user-charts.
Verified: bun run typecheck (web/default)
* ✨ feat(pricing): enrich model details with uptime sparkline and API documentation
Add a compact 30-day uptime sparkline (OpenRouter-style bars + aggregate %) with
per-day tooltips, surface it in a status row under quick stats and in the
per-group performance table, and extend mock data so uptime series are stable
and optionally scoped by group.
Introduce an API tab with Shiki-highlighted code samples (cURL, Python,
TypeScript, JavaScript), endpoint-type switching, authentication guidance, a
supported-parameters table, and mock per-group RPM/TPM/RPD limits. Infer
vendor, tokenizer, license, and data-retention hints for a provider & data
privacy card on the Overview tab (capabilities/modalities stay with model
identity; rate limits stay with the API tab).
Update i18n for all new user-facing strings across en, zh, fr, ja, ru, and vi.
* 🏆 feat(rankings): add comprehensive rankings dashboard
Add a mock-data powered rankings experience with period tabs, model, app, and vendor leaderboards, market share and history charts, movers, new releases, and per-category sections while backend analytics are pending.
Link ranked models to pricing details and ranked vendors to filtered pricing results, and include localized copy for all supported frontend locales.
* fix(theme): correct theme preset selection state
- update Base UI Radio selectors to use data-checked/data-unchecked states.
- fix unchecked theme options still showing selected indicators.
- isolate the default theme preview tokens to prevent preset changes from leaking into it.
* fix(setup): correct usage mode radio state
- use Base UI data-checked/data-unchecked states for RadioGroup styling.
- hide radio indicators when options are unchecked to avoid setup page display issues.
- drive usage mode card and icon selection styles from Base UI state.
* fix(auth): submit sign-in and sign-up forms
* 🎨 refactor: Align default theme with shadcn Base Nova and prune legacy customization
Migrate shadcn UI to Base UI primitives via CLI (`base-nova` / `components.json`)
and reinstall full component registry with `--overwrite`, including Hugeicons-backed
widgets and newly added registry components.
- Remove custom multi-preset/theme-radius system (`ThemeCustomizationProvider`, cookies,
preset UI from config drawer); rely on official semantic CSS tokens + light/dark only.
- Replace `theme.css` with shadcn’s documented neutral `:root`/`.dark` palette and
`@theme inline` mappings (plus skeleton token vars for existing shimmer usage).
- Update global styles for Base UI: collapsible animation uses `--collapsible-panel-height`;
clarify scroll-lock override comment.
Application compatibility:
- Keep minimal shims where app code diverged from official APIs (popover collision props,
combobox legacy `options` callers, Spinner prop typing).
- Switch interactive styling from Radix-era `data-state` / `--radix-*` selectors to Base UI
semantics (`data-open`, `data-popup-open`, `data-panel-open`, `--anchor-width`, etc.)
Tooling / docs / build:
- Rename Rsbuild vendor chunk grouping to `@base-ui` + transitive `@radix-ui`.
- Refresh AGENTS.md / CLAUDE.md / classic→default sync skill for Base UI stack.
- Bump `package.json` / lockfile for shadcn-postinstall deps (Hugeicons, chart stack, themes, etc.)
Verified: `bun run typecheck` passes.
Note: `bun run lint` still reports pre-existing hooks rule violations elsewhere;
not addressed in this change.
* 🎨 chore(web/default): unify table toolbar, relocate usage stats, refine filters
- Refactor DataTableToolbar to a single wrapping flex row with a
right-aligned action cluster (Reset / Search / View / Expand) for a
cleaner Ant Design Pro–style filter bar; remove the dedicated stats row
and the toolbar `stats` prop.
- Move Common Logs summary badges (Usage / RPM / TPM) and the sensitive-
data visibility toggle into the page header via CommonLogsHeaderActions
and SectionPageLayout.Actions so the toolbar stays focused on filters.
- Slim CommonLogsFilterBar props (no stats / preActions eye control).
- Improve CompactDateTimeRangePicker: show minute-precision labels on the
trigger (seconds omitted; aligns with datetime-local inputs); widen the
trigger on sm+ breakpoints so the full range is visible without truncation;
apply the same width in task logs filters.
- Simplify DataTableViewOptions: text-only “View” trigger, no sliders icon.
- Earlier layout tweak: extra top padding on SectionPageLayout scroll
content so control focus rings are not clipped by overflow.
* feat(web/default): Base UI migration and component foundation
Migrate from Radix UI to Base UI, rewrite core UI primitives,
update dependencies (recharts, date-fns, next-themes), add
shadcn agent skill documentation, and refresh AI element components.
This is the foundational work from the v2/localmain lineage that
was not covered by the individual feature commits above.
---------
Co-authored-by: t0ng7u <dev@aiass.cc>
Co-authored-by: QuentinHsu <xuquentinyang@gmail.com>
2026-05-06 12:39:36 +08:00
|
|
|
/*
|
|
|
|
|
* Theme presets — color palettes, border radius, and density scaling.
|
|
|
|
|
*
|
|
|
|
|
* Usage: applied via data attributes on <body>:
|
|
|
|
|
* <body data-theme-preset="rose-garden" data-theme-radius="lg" data-theme-scale="sm" />
|
|
|
|
|
*
|
|
|
|
|
* - `data-theme-preset` overrides the color palette defined in ./theme.css and
|
|
|
|
|
* ships a curated default `--radius` value to match the preset's mood
|
|
|
|
|
* (e.g. rose-garden uses 1rem, ocean-breeze uses 0.3rem).
|
|
|
|
|
* - Each preset declares both light and dark color values; dark values use
|
|
|
|
|
* the `.dark` ancestor selector so they apply when html has the `.dark` class.
|
|
|
|
|
* - `data-theme-radius` and `data-theme-scale` adjust visual density
|
|
|
|
|
* independently. The radius block is intentionally placed AFTER the preset
|
|
|
|
|
* blocks so an explicit user choice overrides the preset's default radius.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* ── Underground ──────────────────────────────────────────────────────── */
|
|
|
|
|
[data-theme-preset='underground'] {
|
|
|
|
|
--primary: oklch(0.5315 0.0694 156.19);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.5748 0.0862 336.52);
|
|
|
|
|
--secondary-foreground: oklch(1 0 0);
|
|
|
|
|
--ring: oklch(0.5315 0.0694 156.19);
|
|
|
|
|
--chart-1: oklch(0.5315 0.0694 156.19);
|
|
|
|
|
--chart-2: oklch(0.5748 0.0862 336.52);
|
|
|
|
|
--chart-3: oklch(0.8603 0.0731 158.6);
|
|
|
|
|
--chart-4: oklch(0.8292 0.0422 332);
|
|
|
|
|
--chart-5: oklch(0.9564 0.0234 159.23);
|
|
|
|
|
--sidebar-primary: oklch(0.5315 0.0694 156.19);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.9687 0.0051 247.88);
|
|
|
|
|
--sidebar-accent-foreground: oklch(0.279 0.0299 260.05);
|
|
|
|
|
--sidebar-ring: oklch(0.5315 0.0694 156.19);
|
|
|
|
|
--radius: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
.dark [data-theme-preset='underground'] {
|
|
|
|
|
--primary: oklch(0.6147 0.0867 154.73);
|
|
|
|
|
--primary-foreground: oklch(0.129 0.0306 264.71);
|
|
|
|
|
--secondary: oklch(0.6624 0.0855 334.26);
|
|
|
|
|
--secondary-foreground: oklch(0.129 0.0306 264.71);
|
|
|
|
|
--ring: oklch(0.6147 0.0867 154.73);
|
|
|
|
|
--chart-1: oklch(0.6147 0.0867 154.73);
|
|
|
|
|
--chart-2: oklch(0.6624 0.0855 334.26);
|
|
|
|
|
--chart-3: oklch(0.7122 0.0991 154.66);
|
|
|
|
|
--chart-4: oklch(0.7308 0.07 333.6);
|
|
|
|
|
--chart-5: oklch(0.781 0.0975 156.24);
|
|
|
|
|
--sidebar-primary: oklch(0.6147 0.0867 154.73);
|
|
|
|
|
--sidebar-primary-foreground: oklch(0.129 0.0306 264.71);
|
|
|
|
|
--sidebar-accent: oklch(0.279 0.0299 260.05);
|
|
|
|
|
--sidebar-accent-foreground: oklch(0.929 0.0095 255.53);
|
|
|
|
|
--sidebar-ring: oklch(0.6147 0.0867 154.73);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Rose Garden ──────────────────────────────────────────────────────── */
|
|
|
|
|
[data-theme-preset='rose-garden'] {
|
|
|
|
|
--primary: oklch(0.5827 0.2418 12.23);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.8131 0.1129 5.67);
|
|
|
|
|
--secondary-foreground: oklch(0.2686 0.0032 34.85);
|
|
|
|
|
--ring: oklch(0.5827 0.2418 12.23);
|
|
|
|
|
--chart-1: oklch(0.5827 0.2418 12.23);
|
|
|
|
|
--chart-2: oklch(0.8938 0.0563 3.77);
|
|
|
|
|
--chart-3: oklch(0.7135 0.1879 7.69);
|
|
|
|
|
--chart-4: oklch(0.8131 0.1129 5.67);
|
|
|
|
|
--chart-5: oklch(0.9429 0.0283 5.52);
|
|
|
|
|
--sidebar-primary: oklch(0.5827 0.2418 12.23);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.5827 0.2418 12.23);
|
|
|
|
|
--sidebar-accent-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.5827 0.2418 12.23);
|
|
|
|
|
--radius: 1rem;
|
|
|
|
|
}
|
|
|
|
|
.dark [data-theme-preset='rose-garden'] {
|
|
|
|
|
--primary: oklch(0.6476 0.2348 10.36);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.8131 0.1129 5.67);
|
|
|
|
|
--secondary-foreground: oklch(0.9227 0.0029 34.49);
|
|
|
|
|
--ring: oklch(0.6476 0.2348 10.36);
|
|
|
|
|
--chart-1: oklch(0.6476 0.2348 10.36);
|
|
|
|
|
--chart-2: oklch(0.8938 0.0563 3.77);
|
|
|
|
|
--chart-3: oklch(0.7135 0.1879 7.69);
|
|
|
|
|
--chart-4: oklch(0.8131 0.1129 5.67);
|
|
|
|
|
--chart-5: oklch(0.9429 0.0283 5.52);
|
|
|
|
|
--sidebar-primary: oklch(0.6476 0.2348 10.36);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.6476 0.2348 10.36);
|
|
|
|
|
--sidebar-accent-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.6476 0.2348 10.36);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Lake View ────────────────────────────────────────────────────────── */
|
|
|
|
|
[data-theme-preset='lake-view'] {
|
|
|
|
|
--primary: oklch(0.765 0.177 163.22);
|
|
|
|
|
--primary-foreground: oklch(0 0 0);
|
|
|
|
|
--secondary: oklch(0.551 0.0899 200.52);
|
|
|
|
|
--secondary-foreground: oklch(1 0 0);
|
|
|
|
|
--ring: oklch(0.765 0.177 163.22);
|
|
|
|
|
--chart-1: oklch(0.765 0.177 163.22);
|
|
|
|
|
--chart-2: oklch(0.551 0.0899 200.52);
|
|
|
|
|
--chart-3: oklch(0.845 0.143 164.98);
|
|
|
|
|
--chart-4: oklch(0.8576 0.1202 192.38);
|
|
|
|
|
--chart-5: oklch(0.95 0.052 163.05);
|
|
|
|
|
--sidebar-primary: oklch(0.765 0.177 163.22);
|
|
|
|
|
--sidebar-primary-foreground: oklch(0 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.765 0.177 163.22);
|
|
|
|
|
--sidebar-accent-foreground: oklch(0.2742 0.0208 165.96);
|
|
|
|
|
--sidebar-ring: oklch(0.765 0.177 163.22);
|
|
|
|
|
--radius: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
.dark [data-theme-preset='lake-view'] {
|
|
|
|
|
--primary: oklch(0.765 0.177 163.22);
|
|
|
|
|
--primary-foreground: oklch(0 0 0);
|
|
|
|
|
--secondary: oklch(0.551 0.0899 200.52);
|
|
|
|
|
--secondary-foreground: oklch(1 0 0);
|
|
|
|
|
--ring: oklch(0.765 0.177 163.22);
|
|
|
|
|
--chart-1: oklch(0.765 0.177 163.22);
|
|
|
|
|
--chart-2: oklch(0.551 0.0899 200.52);
|
|
|
|
|
--chart-3: oklch(0.845 0.143 164.98);
|
|
|
|
|
--chart-4: oklch(0.8576 0.1202 192.38);
|
|
|
|
|
--chart-5: oklch(0.95 0.052 163.05);
|
|
|
|
|
--sidebar-primary: oklch(0.765 0.177 163.22);
|
|
|
|
|
--sidebar-primary-foreground: oklch(0 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.765 0.177 163.22);
|
|
|
|
|
--sidebar-accent-foreground: oklch(0 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.765 0.177 163.22);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Sunset Glow ──────────────────────────────────────────────────────── */
|
|
|
|
|
[data-theme-preset='sunset-glow'] {
|
|
|
|
|
--primary: oklch(0.5591 0.1882 25.33);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.7938 0.1248 42.42);
|
|
|
|
|
--secondary-foreground: oklch(0 0 0);
|
|
|
|
|
--ring: oklch(0.5591 0.1882 25.33);
|
|
|
|
|
--chart-1: oklch(0.5591 0.1882 25.33);
|
|
|
|
|
--chart-2: oklch(0.7938 0.1248 42.42);
|
|
|
|
|
--chart-3: oklch(0.809 0.0875 17.95);
|
|
|
|
|
--chart-4: oklch(0.8964 0.0724 43.73);
|
|
|
|
|
--chart-5: oklch(0.9381 0.0241 16.66);
|
|
|
|
|
--sidebar-primary: oklch(0.5591 0.1882 25.33);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.5591 0.1882 25.33);
|
|
|
|
|
--sidebar-accent-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.5591 0.1882 25.33);
|
|
|
|
|
--radius: 1rem;
|
|
|
|
|
}
|
|
|
|
|
.dark [data-theme-preset='sunset-glow'] {
|
|
|
|
|
--primary: oklch(0.6387 0.1822 23.51);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.7938 0.1248 42.42);
|
|
|
|
|
--secondary-foreground: oklch(0 0 0);
|
|
|
|
|
--ring: oklch(0.6387 0.1822 23.51);
|
|
|
|
|
--chart-1: oklch(0.6387 0.1822 23.51);
|
|
|
|
|
--chart-2: oklch(0.7938 0.1248 42.42);
|
|
|
|
|
--chart-3: oklch(0.809 0.0875 17.95);
|
|
|
|
|
--chart-4: oklch(0.8964 0.0724 43.73);
|
|
|
|
|
--chart-5: oklch(0.9381 0.0241 16.66);
|
|
|
|
|
--sidebar-primary: oklch(0.6387 0.1822 23.51);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.6387 0.1822 23.51);
|
|
|
|
|
--sidebar-accent-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.6387 0.1822 23.51);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Forest Whisper ───────────────────────────────────────────────────── */
|
|
|
|
|
[data-theme-preset='forest-whisper'] {
|
|
|
|
|
--primary: oklch(0.5276 0.1072 182.22);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.5236 0.0505 250.18);
|
|
|
|
|
--secondary-foreground: oklch(1 0 0);
|
|
|
|
|
--ring: oklch(0.5276 0.1072 182.22);
|
|
|
|
|
--chart-1: oklch(0.5276 0.1072 182.22);
|
|
|
|
|
--chart-2: oklch(0.5236 0.0505 250.18);
|
|
|
|
|
--chart-3: oklch(0.7741 0.1676 178.16);
|
|
|
|
|
--chart-4: oklch(0.7294 0.0416 244.67);
|
|
|
|
|
--chart-5: oklch(0.9511 0.0547 177.24);
|
|
|
|
|
--sidebar-primary: oklch(0.5276 0.1072 182.22);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.5276 0.1072 182.22);
|
|
|
|
|
--sidebar-accent-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.5276 0.1072 182.22);
|
|
|
|
|
--radius: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
.dark [data-theme-preset='forest-whisper'] {
|
|
|
|
|
--primary: oklch(0.5991 0.1318 180.39);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.6578 0.0485 247.35);
|
|
|
|
|
--secondary-foreground: oklch(1 0 0);
|
|
|
|
|
--ring: oklch(0.5991 0.1318 180.39);
|
|
|
|
|
--chart-1: oklch(0.5991 0.1318 180.39);
|
|
|
|
|
--chart-2: oklch(0.6578 0.0485 247.35);
|
|
|
|
|
--chart-3: oklch(0.7741 0.1676 178.16);
|
|
|
|
|
--chart-4: oklch(0.7294 0.0416 244.67);
|
|
|
|
|
--chart-5: oklch(0.9511 0.0547 177.24);
|
|
|
|
|
--sidebar-primary: oklch(0.5991 0.1318 180.39);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.5991 0.1318 180.39);
|
|
|
|
|
--sidebar-accent-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.5991 0.1318 180.39);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Ocean Breeze ─────────────────────────────────────────────────────── */
|
|
|
|
|
[data-theme-preset='ocean-breeze'] {
|
|
|
|
|
--primary: oklch(0.5461 0.2152 262.88);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.5854 0.2041 277.12);
|
|
|
|
|
--secondary-foreground: oklch(1 0 0);
|
|
|
|
|
--ring: oklch(0.5461 0.2152 262.88);
|
|
|
|
|
--chart-1: oklch(0.5461 0.2152 262.88);
|
|
|
|
|
--chart-2: oklch(0.5854 0.2041 277.12);
|
|
|
|
|
--chart-3: oklch(0.809 0.0922 251.81);
|
|
|
|
|
--chart-4: oklch(0.785 0.1007 274.72);
|
|
|
|
|
--chart-5: oklch(0.932 0.0281 255.58);
|
|
|
|
|
--sidebar-primary: oklch(0.5461 0.2152 262.88);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.5461 0.2152 262.88);
|
|
|
|
|
--sidebar-accent-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.5461 0.2152 262.88);
|
|
|
|
|
--radius: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
.dark [data-theme-preset='ocean-breeze'] {
|
|
|
|
|
--primary: oklch(0.623 0.188 259.81);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.5854 0.2041 277.12);
|
|
|
|
|
--secondary-foreground: oklch(0 0 0);
|
|
|
|
|
--ring: oklch(0.623 0.188 259.81);
|
|
|
|
|
--chart-1: oklch(0.623 0.188 259.81);
|
|
|
|
|
--chart-2: oklch(0.5854 0.2041 277.12);
|
|
|
|
|
--chart-3: oklch(0.809 0.0922 251.81);
|
|
|
|
|
--chart-4: oklch(0.785 0.1007 274.72);
|
|
|
|
|
--chart-5: oklch(0.932 0.0281 255.58);
|
|
|
|
|
--sidebar-primary: oklch(0.623 0.188 259.81);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.623 0.188 259.81);
|
|
|
|
|
--sidebar-accent-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.623 0.188 259.81);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Lavender Dream ───────────────────────────────────────────────────── */
|
|
|
|
|
[data-theme-preset='lavender-dream'] {
|
|
|
|
|
--primary: oklch(0.5709 0.1808 306.89);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.811 0.0589 201.14);
|
|
|
|
|
--secondary-foreground: oklch(0 0 0);
|
|
|
|
|
--ring: oklch(0.5709 0.1808 306.89);
|
|
|
|
|
--chart-1: oklch(0.5709 0.1808 306.89);
|
|
|
|
|
--chart-2: oklch(0.811 0.0589 201.14);
|
|
|
|
|
--chart-3: oklch(0.8281 0.078 309.73);
|
|
|
|
|
--chart-4: oklch(0.8611 0.0504 198.03);
|
|
|
|
|
--chart-5: oklch(0.947 0.0212 309.77);
|
|
|
|
|
--sidebar-primary: oklch(0.5709 0.1808 306.89);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.5709 0.1808 306.89);
|
|
|
|
|
--sidebar-accent-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.5709 0.1808 306.89);
|
|
|
|
|
--radius: 1rem;
|
|
|
|
|
}
|
|
|
|
|
.dark [data-theme-preset='lavender-dream'] {
|
|
|
|
|
--primary: oklch(0.6359 0.1699 307.95);
|
|
|
|
|
--primary-foreground: oklch(1 0 0);
|
|
|
|
|
--secondary: oklch(0.811 0.0589 201.14);
|
|
|
|
|
--secondary-foreground: oklch(0 0 0);
|
|
|
|
|
--ring: oklch(0.6359 0.1699 307.95);
|
|
|
|
|
--chart-1: oklch(0.6359 0.1699 307.95);
|
|
|
|
|
--chart-2: oklch(0.811 0.0589 201.14);
|
|
|
|
|
--chart-3: oklch(0.8281 0.078 309.73);
|
|
|
|
|
--chart-4: oklch(0.8611 0.0504 198.03);
|
|
|
|
|
--chart-5: oklch(0.947 0.0212 309.77);
|
|
|
|
|
--sidebar-primary: oklch(0.6359 0.1699 307.95);
|
|
|
|
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-accent: oklch(0.6359 0.1699 307.95);
|
|
|
|
|
--sidebar-accent-foreground: oklch(1 0 0);
|
|
|
|
|
--sidebar-ring: oklch(0.6359 0.1699 307.95);
|
|
|
|
|
}
|
|
|
|
|
|
🎨 fix(web): align UI and charts with theme tokens and presets
Improve theme switching fidelity (including system preference), extend design tokens so color presets tint real surfaces—not only primary/chrome—and refactor shared badges, tables, and dashboard visuals to semantic colors. Wire VChart series colors to `--chart-*` with safe fallbacks.
**Changes**
- **Theme runtime** (`theme-provider.tsx`): Validate stored theme cookie; keep `resolvedTheme` in sync with DOM + `(prefers-color-scheme)`; `resetTheme` respects `defaultTheme`; memoized context value.
- **Tokens** (`theme.css`): Add `--success|warning|info|neutral` (+ foregrounds) and map them under `@theme inline` for Tailwind utilities.
- **Presets** (`theme-presets.css`): For non-`default` presets, derive `card`, `popover`, `muted`, `accent`, `border`, `input`, and sidebar tokens from `--primary`/`--background`; map semantic status colors to preset chart variables.
- **Components**: `status-badge`, `colors` (avatars, announcements), `copy-button`, `group-badge`, `data-table` row styles, `sidebar` outline shadow (fix `var(--sidebar-border)` usage), ai-elements tool/web-preview status colors.
- **Dashboard**: Latency/API helpers and overview fragments use semantic tokens; `charts.ts` reads `--chart-1`…`--chart-5` from computed styles with fallbacks; `processChartData` / `processUserChartData` accept optional `themeKey` for preset churn; chart components pass `customization.preset` and bump `VChart` keys.
**Verification**
- `bun run typecheck`
2026-05-07 11:20:43 +08:00
|
|
|
/* ── Semantic surface bridge ──────────────────────────────────────────── */
|
|
|
|
|
/* Color presets should tint the surfaces most components actually use, not
|
|
|
|
|
* only primary buttons. These derived tokens keep the app theme-aware without
|
|
|
|
|
* duplicating per-component dark-mode overrides. */
|
|
|
|
|
[data-theme-preset]:not([data-theme-preset='default']) {
|
|
|
|
|
--card: color-mix(in oklch, var(--primary) 3%, var(--background));
|
|
|
|
|
--popover: color-mix(in oklch, var(--primary) 5%, var(--background));
|
|
|
|
|
--muted: color-mix(in oklch, var(--primary) 7%, var(--background));
|
|
|
|
|
--muted-foreground: color-mix(
|
|
|
|
|
in oklch,
|
|
|
|
|
var(--foreground) 68%,
|
|
|
|
|
var(--primary)
|
|
|
|
|
);
|
|
|
|
|
--accent: color-mix(in oklch, var(--primary) 14%, var(--background));
|
|
|
|
|
--accent-foreground: var(--foreground);
|
|
|
|
|
--border: color-mix(in oklch, var(--primary) 20%, var(--background));
|
|
|
|
|
--input: color-mix(in oklch, var(--primary) 22%, var(--background));
|
|
|
|
|
--sidebar: color-mix(in oklch, var(--primary) 4%, var(--background));
|
|
|
|
|
--sidebar-accent: color-mix(in oklch, var(--primary) 14%, var(--background));
|
|
|
|
|
--sidebar-accent-foreground: var(--foreground);
|
|
|
|
|
--sidebar-border: color-mix(in oklch, var(--primary) 18%, var(--background));
|
|
|
|
|
--success: var(--chart-2);
|
|
|
|
|
--warning: var(--chart-4);
|
|
|
|
|
--info: var(--chart-1);
|
|
|
|
|
--neutral: var(--muted-foreground);
|
|
|
|
|
}
|
|
|
|
|
.dark [data-theme-preset]:not([data-theme-preset='default']) {
|
|
|
|
|
--card: color-mix(in oklch, var(--primary) 8%, var(--background));
|
|
|
|
|
--popover: color-mix(in oklch, var(--primary) 12%, var(--background));
|
|
|
|
|
--muted: color-mix(in oklch, var(--primary) 12%, var(--background));
|
|
|
|
|
--muted-foreground: color-mix(
|
|
|
|
|
in oklch,
|
|
|
|
|
var(--foreground) 74%,
|
|
|
|
|
var(--primary)
|
|
|
|
|
);
|
|
|
|
|
--accent: color-mix(in oklch, var(--primary) 18%, var(--background));
|
|
|
|
|
--border: color-mix(in oklch, var(--primary) 24%, var(--background));
|
|
|
|
|
--input: color-mix(in oklch, var(--primary) 28%, var(--background));
|
|
|
|
|
--sidebar: color-mix(in oklch, var(--primary) 5%, var(--background));
|
|
|
|
|
--sidebar-accent: color-mix(in oklch, var(--primary) 18%, var(--background));
|
|
|
|
|
--sidebar-border: color-mix(in oklch, var(--primary) 22%, var(--background));
|
|
|
|
|
}
|
|
|
|
|
|
feat(web/default): unified UI overhaul — Base UI migration, theme presets, rankings dashboard, and table toolbar refactor (#4633)
* 🎨 feat(web/default): add shadcn-style theme presets, radius prefs, and fix selection badges
Integrate the qn-platform–style OKLCH color system into the default frontend while keeping the existing blue-tinted dark tokens for the default theme. Add [data-theme-preset] palettes for seven named presets plus the default zinc-like scale, define [data-theme-radius] overrides so user radius beats preset --radius, and align the Tailwind @custom-variant dark helper with .dark usage.
Introduce ThemeCustomizationProvider to own preset and radius state, persist choices in cookies (theme-preset, theme-radius), and sync data-theme-preset / data-theme-radius on <html>. Wrap the tree in main.tsx.
Extend ConfigDrawer with theme preset swatches (scoped data-theme-preset) and radius previews wired to context; refactor swatch/card markup so selected CircleCheck badges sit outside clipped rows (remove outer overflow-hidden that hid the centered checkmark).
Add i18n keys for preset names, radius, and accessibility labels across en, zh, fr, ja, ru, vi.
* 🎨 fix(web): align segmented controls with theme radius tokens
- Replace hard-coded inner pill radii (rounded-[5px]) on dashboard chart
toolbars with radius-md so the active state follows --radius when users
change Radius in Theme Settings.
- Use nested radii consistent with TabsList/TabsTrigger: outer
rounded-lg (var(--radius)) and inner rounded-md (calc(var(--radius) - 2px))
so the track and active thumb stay concentric at small scales (e.g.
0.3rem) instead of a squared “focus” block inside a rounded shell.
- Apply the same pattern to pricing SegmentedControl and the segmented
groups in consumption-distribution-chart, model-charts, and user-charts.
Verified: bun run typecheck (web/default)
* ✨ feat(pricing): enrich model details with uptime sparkline and API documentation
Add a compact 30-day uptime sparkline (OpenRouter-style bars + aggregate %) with
per-day tooltips, surface it in a status row under quick stats and in the
per-group performance table, and extend mock data so uptime series are stable
and optionally scoped by group.
Introduce an API tab with Shiki-highlighted code samples (cURL, Python,
TypeScript, JavaScript), endpoint-type switching, authentication guidance, a
supported-parameters table, and mock per-group RPM/TPM/RPD limits. Infer
vendor, tokenizer, license, and data-retention hints for a provider & data
privacy card on the Overview tab (capabilities/modalities stay with model
identity; rate limits stay with the API tab).
Update i18n for all new user-facing strings across en, zh, fr, ja, ru, and vi.
* 🏆 feat(rankings): add comprehensive rankings dashboard
Add a mock-data powered rankings experience with period tabs, model, app, and vendor leaderboards, market share and history charts, movers, new releases, and per-category sections while backend analytics are pending.
Link ranked models to pricing details and ranked vendors to filtered pricing results, and include localized copy for all supported frontend locales.
* fix(theme): correct theme preset selection state
- update Base UI Radio selectors to use data-checked/data-unchecked states.
- fix unchecked theme options still showing selected indicators.
- isolate the default theme preview tokens to prevent preset changes from leaking into it.
* fix(setup): correct usage mode radio state
- use Base UI data-checked/data-unchecked states for RadioGroup styling.
- hide radio indicators when options are unchecked to avoid setup page display issues.
- drive usage mode card and icon selection styles from Base UI state.
* fix(auth): submit sign-in and sign-up forms
* 🎨 refactor: Align default theme with shadcn Base Nova and prune legacy customization
Migrate shadcn UI to Base UI primitives via CLI (`base-nova` / `components.json`)
and reinstall full component registry with `--overwrite`, including Hugeicons-backed
widgets and newly added registry components.
- Remove custom multi-preset/theme-radius system (`ThemeCustomizationProvider`, cookies,
preset UI from config drawer); rely on official semantic CSS tokens + light/dark only.
- Replace `theme.css` with shadcn’s documented neutral `:root`/`.dark` palette and
`@theme inline` mappings (plus skeleton token vars for existing shimmer usage).
- Update global styles for Base UI: collapsible animation uses `--collapsible-panel-height`;
clarify scroll-lock override comment.
Application compatibility:
- Keep minimal shims where app code diverged from official APIs (popover collision props,
combobox legacy `options` callers, Spinner prop typing).
- Switch interactive styling from Radix-era `data-state` / `--radix-*` selectors to Base UI
semantics (`data-open`, `data-popup-open`, `data-panel-open`, `--anchor-width`, etc.)
Tooling / docs / build:
- Rename Rsbuild vendor chunk grouping to `@base-ui` + transitive `@radix-ui`.
- Refresh AGENTS.md / CLAUDE.md / classic→default sync skill for Base UI stack.
- Bump `package.json` / lockfile for shadcn-postinstall deps (Hugeicons, chart stack, themes, etc.)
Verified: `bun run typecheck` passes.
Note: `bun run lint` still reports pre-existing hooks rule violations elsewhere;
not addressed in this change.
* 🎨 chore(web/default): unify table toolbar, relocate usage stats, refine filters
- Refactor DataTableToolbar to a single wrapping flex row with a
right-aligned action cluster (Reset / Search / View / Expand) for a
cleaner Ant Design Pro–style filter bar; remove the dedicated stats row
and the toolbar `stats` prop.
- Move Common Logs summary badges (Usage / RPM / TPM) and the sensitive-
data visibility toggle into the page header via CommonLogsHeaderActions
and SectionPageLayout.Actions so the toolbar stays focused on filters.
- Slim CommonLogsFilterBar props (no stats / preActions eye control).
- Improve CompactDateTimeRangePicker: show minute-precision labels on the
trigger (seconds omitted; aligns with datetime-local inputs); widen the
trigger on sm+ breakpoints so the full range is visible without truncation;
apply the same width in task logs filters.
- Simplify DataTableViewOptions: text-only “View” trigger, no sliders icon.
- Earlier layout tweak: extra top padding on SectionPageLayout scroll
content so control focus rings are not clipped by overflow.
* feat(web/default): Base UI migration and component foundation
Migrate from Radix UI to Base UI, rewrite core UI primitives,
update dependencies (recharts, date-fns, next-themes), add
shadcn agent skill documentation, and refresh AI element components.
This is the foundational work from the v2/localmain lineage that
was not covered by the individual feature commits above.
---------
Co-authored-by: t0ng7u <dev@aiass.cc>
Co-authored-by: QuentinHsu <xuquentinyang@gmail.com>
2026-05-06 12:39:36 +08:00
|
|
|
/* ── Border radius ────────────────────────────────────────────────────── */
|
|
|
|
|
[data-theme-radius='none'] {
|
|
|
|
|
--radius: 0rem;
|
|
|
|
|
}
|
|
|
|
|
[data-theme-radius='sm'] {
|
|
|
|
|
--radius: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
[data-theme-radius='md'] {
|
|
|
|
|
--radius: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
[data-theme-radius='lg'] {
|
|
|
|
|
--radius: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
[data-theme-radius='xl'] {
|
|
|
|
|
--radius: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Density scale ────────────────────────────────────────────────────── */
|
|
|
|
|
/* `sm` = compact UI; `lg` = comfortable. Default (no attribute) keeps Tailwind defaults. */
|
|
|
|
|
[data-theme-scale='sm'] {
|
|
|
|
|
--text-xs: 0.7rem;
|
|
|
|
|
--text-sm: 0.78rem;
|
|
|
|
|
--text-base: 0.88rem;
|
|
|
|
|
--text-lg: 1rem;
|
|
|
|
|
--text-xl: 1.13rem;
|
|
|
|
|
--text-2xl: 1.38rem;
|
|
|
|
|
--text-3xl: 1.7rem;
|
|
|
|
|
--spacing: 0.225rem;
|
|
|
|
|
}
|
|
|
|
|
[data-theme-scale='lg'] {
|
|
|
|
|
--text-xs: 0.84rem;
|
|
|
|
|
--text-sm: 0.95rem;
|
|
|
|
|
--text-base: 1.075rem;
|
|
|
|
|
--text-lg: 1.2rem;
|
|
|
|
|
--text-xl: 1.35rem;
|
|
|
|
|
--text-2xl: 1.65rem;
|
|
|
|
|
--text-3xl: 2rem;
|
|
|
|
|
--spacing: 0.28rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Content layout ───────────────────────────────────────────────────── */
|
|
|
|
|
/* `centered` clamps inset content to a comfortable reading width on large screens.
|
|
|
|
|
* Targets every direct child of <SidebarInset> so router outlet wrappers and
|
|
|
|
|
* page content alike are centered. Only kicks in once the viewport exceeds the
|
|
|
|
|
* clamp value. */
|
|
|
|
|
@media (min-width: 1280px) {
|
|
|
|
|
[data-theme-content-layout='centered'] [data-slot='sidebar-inset'] > * {
|
|
|
|
|
max-width: var(--max-content-width, 1280px);
|
|
|
|
|
margin-inline: auto;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|