Skip to content

Commit e09b00e

Browse files
samejrclaude
andcommitted
fix(webapp): list White above Black in the theme picker
Puts the flat pair in the same light-then-dark order as the Light and Dark options above them. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent aec652d commit e09b00e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/webapp/app/components/themeOptions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ export const THEME_OPTIONS: ThemeOption[] = [
2323
{ value: "dark", label: "Dark", icon: MoonIcon },
2424
];
2525

26-
/** Dark and Light with their surfaces pinned flat, so grid lines carry the
26+
/** Light and Dark with their surfaces pinned flat, so grid lines carry the
2727
* layout. Account page only, alongside Classic. The icons here are the
2828
* dark-theme pair; `themeOptionIcon` swaps them per active theme. */
2929
const FLAT_OPTIONS: ThemeOption[] = [
30-
{ value: "black", label: "Black", icon: CircleOutlineIcon },
3130
{ value: "white", label: "White", icon: CircleFilledIcon },
31+
{ value: "black", label: "Black", icon: CircleOutlineIcon },
3232
];
3333

3434
/** Legacy theme, offered on the account page only. */

0 commit comments

Comments
 (0)