diff options
author | Eric Bailey <git@esb.lol> | 2024-09-25 15:54:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-25 15:54:43 -0500 |
commit | b1ca2503de55c41431aac38db4d164da7d506d4f (patch) | |
tree | bc9ee42651a4c639d910e6a31572d47fb45c5c93 /src/alf/themes.ts | |
parent | 6bc001a30e4376e706fd1c10469065e0e78e1bf0 (diff) | |
download | voidsky-b1ca2503de55c41431aac38db4d164da7d506d4f.tar.zst |
Add language filtering UI to search (#5459)
* Use new TextField for search bar * Add lang dropdown * Dialog * Revert "Dialog" This reverts commit 257573cd9c2a70d29df4ef5bdd503eea4ae411fe. * Extract util, test, cleanup * Fix formatting * Pass through other params * Fix sticky header * Fix stale data, hide/show * Improve query parsing * Replace memo * Couple tweaks * Revert cancel change * Remove unused placeholder
Diffstat (limited to 'src/alf/themes.ts')
-rw-r--r-- | src/alf/themes.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/alf/themes.ts b/src/alf/themes.ts index 9f7ec5c67..0cfe09aad 100644 --- a/src/alf/themes.ts +++ b/src/alf/themes.ts @@ -305,6 +305,7 @@ export function createThemes({ } as const const light: Theme = { + scheme: 'light', name: 'light', palette: lightPalette, atoms: { @@ -390,6 +391,7 @@ export function createThemes({ } const dark: Theme = { + scheme: 'dark', name: 'dark', palette: darkPalette, atoms: { @@ -479,6 +481,7 @@ export function createThemes({ const dim: Theme = { ...dark, + scheme: 'dark', name: 'dim', palette: dimPalette, atoms: { |