mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-24 13:54:59 +00:00
- 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.
22 lines
403 B
SCSS
22 lines
403 B
SCSS
$body-bg: #05060a;
|
|
$app-bg: #04070f;
|
|
$panel-bg: #0d111b;
|
|
$panel-bg-alt: #0b1221;
|
|
$input-bg: #030712;
|
|
$sidebar-bg: #0f172a;
|
|
$border-color: #1f2937;
|
|
$accent: #f97316;
|
|
$accent-strong: #fb923c;
|
|
$text: #e2e8f0;
|
|
$text-strong: #ffffff;
|
|
$muted: #94a3b8;
|
|
$radius: 0.75rem;
|
|
|
|
@mixin panel() {
|
|
background: $panel-bg;
|
|
border-radius: $radius;
|
|
border: 1px solid $border-color;
|
|
padding: 1rem;
|
|
color: $text;
|
|
}
|