Revert "Update semantic color tokens" (#6365)

This commit is contained in:
Jacob Richman
2025-08-15 20:18:31 -07:00
committed by GitHub
parent d57cc0b930
commit 6c1373c332
60 changed files with 502 additions and 606 deletions

View File

@@ -6,13 +6,13 @@
import React from 'react';
import { Box, Text } from 'ink';
import { theme } from '../semantic-colors.js';
import { Colors } from '../colors.js';
export const ShellModeIndicator: React.FC = () => (
<Box>
<Text color={theme.status.warning}>
<Text color={Colors.AccentYellow}>
shell mode enabled
<Text color={theme.text.secondary}> (esc to disable)</Text>
<Text color={Colors.Gray}> (esc to disable)</Text>
</Text>
</Box>
);