mobile bluesky app made with flutter
lazurite.stormlightlabs.org/
mobile
bluesky
flutter
1export type ThemeVariant = "light" | "dark";
2
3export type ThemeColors = { name: string; variant: ThemeVariant; background: string; text: string; primary: string };
4
5export type ThemeKey =
6 | "oxocarbon"
7 | "oxocarbon-light"
8 | "catppuccin"
9 | "catppuccin-light"
10 | "nord"
11 | "nord-light"
12 | "rosePine"
13 | "rosePine-light";