replies timeline only, appview-less bluesky client
1export type Theme = Record<string, string> & { 2 bg: string; 3 fg: string; 4 accent: string; 5 accent2: string; 6}; 7 8export const defaultTheme: Theme = { 9 bg: '#11001c', 10 fg: '#f8fafc', 11 accent: '#ec4899', 12 accent2: '#8b5cf6' 13};