export interface TitleBarColors {
  readonly color: string;
  readonly symbolColor: string;
}

export function desktopTitleBarColors(dark: boolean): TitleBarColors {
  return dark
    ? { color: "#27272a", symbolColor: "#fafafa" }
    : { color: "#ffffff", symbolColor: "#18181b" };
}

export function desktopWindowBackground(dark: boolean): string {
  return dark ? "#18181b" : "#ffffff";
}
