Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Tooltip, TooltipPopup, TooltipTrigger } from "../ui/tooltip";

const PROVIDER_UPDATE_PILL_STYLES = {
loading:
"bg-update-surface text-update group-has-[button.provider-update-main:hover]/provider-update:bg-update/22",
"bg-update-surface text-update-foreground group-has-[button.provider-update-main:hover]/provider-update:bg-update/22",
success:
"bg-success/12 text-success group-has-[button.provider-update-main:hover]/provider-update:bg-success/18",
warning:
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/components/sidebar/SidebarUpdatePill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export function SidebarUpdatePill() {
)}
{visible && (
<div
className={`group/update relative flex h-7 w-full items-center rounded-lg bg-update-surface text-xs font-medium text-update ${
className={`group/update relative flex h-7 w-full items-center rounded-lg bg-update-surface text-xs font-medium text-update-foreground ${
disabled ? " cursor-not-allowed opacity-60" : ""
}`}
>
Expand Down Expand Up @@ -224,7 +224,7 @@ export function SidebarUpdatePill() {
<button
type="button"
aria-label="Dismiss update"
className="mr-1 inline-flex size-5 items-center justify-center rounded-md text-update/60 transition-colors hover:text-update"
className="mr-1 inline-flex size-5 items-center justify-center rounded-md text-update-foreground transition-colors"
onClick={() => setDismissed(true)}
>
<XIcon className="size-3.5" />
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ html[data-mobile-composer-route-transition="true"]::view-transition-old(t3-mobil
--warning-foreground: var(--color-amber-400);
--warning-surface: color-mix(in srgb, var(--warning) 16%, transparent);
--update: var(--primary);
--update-foreground: var(--primary);
--update-foreground: var(--color-blue-400);
--update-surface: color-mix(in srgb, var(--update) 18%, transparent);
--sidebar: var(--card);
--sidebar-foreground: var(--foreground);
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/themePalette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ const T3_CODE_DARK_THEME_COLORS: ThemeColors = {
warningForeground: "#ffb900",
warningSurface: "#312108",
update: "#366ffb",
updateForeground: "#366ffb",
updateForeground: "#51a2ff",
updateSurface: "#121c35",
accentSurface: "#141414",
accentSurfaceForeground: "#f5f5f5",
Expand Down
Loading