summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Footer.tsx
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-19 12:38:09 -0400
committerN. Taylor Mullen <[email protected]>2025-04-19 17:10:06 -0400
commitf7edf711906ed8492fc65f3c1cfad1ccd7ede187 (patch)
treefcf6e6152cdddfee91c12316cab906d5e31d0e75 /packages/cli/src/ui/components/Footer.tsx
parent3fce6cea27d3e6129d6c06e528b62e1b11bf7094 (diff)
Give Gemini Code a face lift.
- This utilizes `ink-gradient` to render GEMINI CODE in amazing colors. - Added a shared color configuration for UX (should this be in config?). It's very possible that we shouldn't be talking about the specific colors and instead be mentioning "foreground"/"background"/inlineCode etc. type colors. - Updated existing color usages to utilize `Colors.*` Fixes https://b.corp.google.com/issues/411385593
Diffstat (limited to 'packages/cli/src/ui/components/Footer.tsx')
-rw-r--r--packages/cli/src/ui/components/Footer.tsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx
index 45167ab3..3b4e197b 100644
--- a/packages/cli/src/ui/components/Footer.tsx
+++ b/packages/cli/src/ui/components/Footer.tsx
@@ -6,6 +6,7 @@
import React from 'react';
import { Box, Text } from 'ink';
+import { Colors } from '../colors.js';
interface FooterProps {
queryLength: number;
@@ -14,8 +15,10 @@ interface FooterProps {
export const Footer: React.FC<FooterProps> = ({ queryLength }) => (
<Box marginTop={1} justifyContent="space-between">
<Box minWidth={15}>
- <Text color="gray">{queryLength === 0 ? '? for shortcuts' : ''}</Text>
+ <Text color={Colors.SubtleComment}>
+ {queryLength === 0 ? '? for shortcuts' : ''}
+ </Text>
</Box>
- <Text color="blue">Gemini</Text>
+ <Text color={Colors.AccentBlue}>Gemini</Text>
</Box>
);