Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
interface ThemeVars extends ThemeVarsBase, ThemeVarsColors {
|
|
}
|
|
interface ThemeVarsPartial extends ThemeVarsBase, Partial<ThemeVarsColors> {
|
|
}
|
|
interface ThemeVarsBase {
|
|
base: 'light' | 'dark';
|
|
}
|
|
interface ThemeVarsColors {
|
|
colorPrimary: string;
|
|
colorSecondary: string;
|
|
appBg: string;
|
|
appContentBg: string;
|
|
appPreviewBg: string;
|
|
appBorderColor: string;
|
|
appBorderRadius: number;
|
|
fontBase: string;
|
|
fontCode: string;
|
|
textColor: string;
|
|
textInverseColor: string;
|
|
textMutedColor: string;
|
|
barTextColor: string;
|
|
barHoverColor: string;
|
|
barSelectedColor: string;
|
|
barBg: string;
|
|
buttonBg: string;
|
|
buttonBorder: string;
|
|
booleanBg: string;
|
|
booleanSelectedBg: string;
|
|
inputBg: string;
|
|
inputBorder: string;
|
|
inputTextColor: string;
|
|
inputBorderRadius: number;
|
|
brandTitle?: string;
|
|
brandUrl?: string;
|
|
brandImage?: string;
|
|
brandTarget?: string;
|
|
gridCellSize?: number;
|
|
}
|
|
|
|
declare const themes: {
|
|
light: ThemeVars;
|
|
dark: ThemeVars;
|
|
normal: ThemeVars;
|
|
};
|
|
interface Rest {
|
|
[key: string]: any;
|
|
}
|
|
declare const create: (vars?: ThemeVarsPartial, rest?: Rest) => ThemeVars;
|
|
|
|
export { create, themes };
|