Files
AutoMetabuilder/frontend/autometabuilder/styles/_variables.scss
johndoe6345789 22c9306347 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 01:08:34 +00:00

17 lines
296 B
SCSS

$body-bg: #05060a;
$panel-bg: #0d111b;
$border-color: #1f2937;
$accent: #f97316;
$accent-strong: #fb923c;
$text: #e2e8f0;
$muted: #94a3b8;
$radius: 0.75rem;
@mixin panel() {
background: $panel-bg;
border-radius: $radius;
border: 1px solid $border-color;
padding: 1rem;
color: $text;
}