Files
johndoe6345789 6ff6813259 Introduce AutoMetabuilder core components and workflow packages:
- Implement core components: CLI argument parsing, environment loading, GitHub service creation, and logging configuration.
- Add support for OpenAI client setup and model resolution.
- Develop SDLC context loader from GitHub and repository files.
- Implement workflow context and engine builders.
- Introduce major workflow packages: `game_tick_loop` and `contextual_iterative_loop`.
- Update localization files with new package descriptions and labels.
- Streamline web navigation by loading items from a dedicated JSON file.
2026-01-10 11:21:55 +00:00

35 lines
718 B
SCSS

@import "variables";
:root {
color: $text;
background: $body-bg;
--color-body-bg: #{$body-bg};
--color-app-bg: #{$app-bg};
--color-panel-bg: #{$panel-bg};
--color-panel-alt: #{$panel-bg-alt};
--color-input-bg: #{$input-bg};
--color-sidebar-bg: #{$sidebar-bg};
--color-text: #{$text};
--color-text-strong: #{$text-strong};
--color-text-muted: #{$muted};
--color-text-muted-strong: #{rgba($text, 0.8)};
--color-border-muted: #{rgba($muted, 0.4)};
--color-divider: #{rgba($text, 0.08)};
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Inter", system-ui, sans-serif;
background: $body-bg;
color: $text;
}
button:disabled {
opacity: 0.6;
cursor: not-allowed;
}