Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/screens/connections/connections_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ class _ConnectionCardState extends ConsumerState<_ConnectionCard> {
Widget _buildRawExpandedContent(bool isDark, ColorScheme colorScheme) {
return Container(
decoration: BoxDecoration(
color: isDark ? const Color(0xFF15161C) : const Color(0xFFF8F9FA),
color: isDark ? DesignColors.footerBackground : DesignColors.backgroundLight,
border: Border(
top: BorderSide(
color: isDark ? DesignColors.borderDark : DesignColors.borderLight)),
Expand Down Expand Up @@ -993,7 +993,7 @@ class _ConnectionCardState extends ConsumerState<_ConnectionCard> {
Widget _buildExpandedContent(List<ActiveSession> activeSessions, bool isDark, ColorScheme colorScheme) {
return Container(
decoration: BoxDecoration(
color: isDark ? const Color(0xFF15161C) : const Color(0xFFF8F9FA),
color: isDark ? DesignColors.footerBackground : DesignColors.backgroundLight,
border: Border(top: BorderSide(color: isDark ? DesignColors.borderDark : DesignColors.borderLight)),
borderRadius: const BorderRadius.vertical(bottom: Radius.circular(12)),
),
Expand Down
4 changes: 2 additions & 2 deletions lib/screens/me/widgets/propose_card_task.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ class ProposeCardTask extends ConsumerWidget {
Container(
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: Spacing.s8),
decoration: BoxDecoration(
color: (isDark ? Colors.grey.shade900 : Colors.grey.shade100),
color: (isDark ? DesignColors.surfaceDark : DesignColors.canvasLight),
borderRadius: BorderRadius.circular(4),
),
child: Text(
resultSummary,
style: GoogleFonts.jetBrainsMono(
fontSize: 11,
color: isDark ? Colors.grey.shade200 : Colors.grey.shade800,
color: isDark ? DesignColors.textPrimary : DesignColors.textPrimaryLight,
),
),
),
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/projects/runs_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1972,7 +1972,7 @@ const _seriesPalette = <Color>[
DesignColors.warning,
DesignColors.success,
DesignColors.error,
Color(0xFFB394FF),
DesignColors.violet,
];

/// Renders a metric group as a single multi-line chart with a legend.
Expand Down
1 change: 1 addition & 0 deletions lib/theme/design_colors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class DesignColors {
// same model as AppStatusChip.
static const info = Color(0xFF6366F1); // indigo — informational / phase
static const slate = Color(0xFF64748B); // neutral slate — routine / status
static const violet = Color(0xFFB394FF); // categorical accent — chart series

// Status containers (ADR-047 D-5/D-6 — M3 *Container / on*Container
// idiom). A tinted callout background + the on-color that stays
Expand Down
4 changes: 2 additions & 2 deletions scripts/design-token-baseline.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# One <category>\t<count> per line. Counts may only DECREASE —
# lowering them as the backlog burns down (WS6) is the point.
private_chip_class 30
raw_material_color 7
stray_hex_color 5
raw_material_color 3
stray_hex_color 0
off_scale_radius 16
off_scale_font_size 34
off_grid_edge_inset 32
Expand Down
Loading