From 6c1373c33212e26521701acf73c0398721b3a881 Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Fri, 15 Aug 2025 20:18:31 -0700 Subject: Revert "Update semantic color tokens" (#6365) --- packages/cli/src/ui/components/SettingsDialog.tsx | 36 +++++++++-------------- 1 file changed, 14 insertions(+), 22 deletions(-) (limited to 'packages/cli/src/ui/components/SettingsDialog.tsx') diff --git a/packages/cli/src/ui/components/SettingsDialog.tsx b/packages/cli/src/ui/components/SettingsDialog.tsx index ce50e28f..a09cd76a 100644 --- a/packages/cli/src/ui/components/SettingsDialog.tsx +++ b/packages/cli/src/ui/components/SettingsDialog.tsx @@ -6,7 +6,7 @@ import React, { useState, useEffect } from 'react'; import { Box, Text } from 'ink'; -import { theme } from '../semantic-colors.js'; +import { Colors } from '../colors.js'; import { LoadedSettings, SettingScope, @@ -366,18 +366,18 @@ export function SettingsDialog({ return ( - + Settings - {showScrollUp && } + {showScrollUp && } {visibleItems.map((item, idx) => { const isActive = focusSection === 'settings' && @@ -405,21 +405,17 @@ export function SettingsDialog({ - + {isActive ? '●' : ''} {item.label} {scopeMessage && ( - {scopeMessage} + {scopeMessage} )} @@ -427,10 +423,10 @@ export function SettingsDialog({ {displayValue} @@ -440,16 +436,12 @@ export function SettingsDialog({ ); })} - {showScrollDown && } + {showScrollDown && } - + {focusSection === 'scope' ? '> ' : ' '}Apply To - + (Use Enter to select, Tab to change focus) {showRestartPrompt && ( - + To see changes, Gemini CLI must be restarted. Press r to exit and apply changes now. -- cgit v1.2.3