summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Tips.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/ui/components/Tips.tsx')
-rw-r--r--packages/cli/src/ui/components/Tips.tsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/cli/src/ui/components/Tips.tsx b/packages/cli/src/ui/components/Tips.tsx
index 4aa6c112..6e754e08 100644
--- a/packages/cli/src/ui/components/Tips.tsx
+++ b/packages/cli/src/ui/components/Tips.tsx
@@ -6,7 +6,7 @@
import React from 'react';
import { Box, Text } from 'ink';
-import { Colors } from '../colors.js';
+import { theme } from '../semantic-colors.js';
import { type Config } from '@google/gemini-cli-core';
interface TipsProps {
@@ -17,25 +17,25 @@ export const Tips: React.FC<TipsProps> = ({ config }) => {
const geminiMdFileCount = config.getGeminiMdFileCount();
return (
<Box flexDirection="column">
- <Text color={Colors.Foreground}>Tips for getting started:</Text>
- <Text color={Colors.Foreground}>
+ <Text color={theme.text.primary}>Tips for getting started:</Text>
+ <Text color={theme.text.primary}>
1. Ask questions, edit files, or run commands.
</Text>
- <Text color={Colors.Foreground}>
+ <Text color={theme.text.primary}>
2. Be specific for the best results.
</Text>
{geminiMdFileCount === 0 && (
- <Text color={Colors.Foreground}>
+ <Text color={theme.text.primary}>
3. Create{' '}
- <Text bold color={Colors.AccentPurple}>
+ <Text bold color={theme.text.accent}>
GEMINI.md
</Text>{' '}
files to customize your interactions with Gemini.
</Text>
)}
- <Text color={Colors.Foreground}>
+ <Text color={theme.text.primary}>
{geminiMdFileCount === 0 ? '4.' : '3.'}{' '}
- <Text bold color={Colors.AccentPurple}>
+ <Text bold color={theme.text.accent}>
/help
</Text>{' '}
for more information.