// Shared constants for record mode
export const RECORD_COLOR = '#f8441c';
export const CHAT_INPUT_BG_COLOR = '#181212';

// Shared constants for references
export const REFERENCE_WHITE_COLOR = '#ffffff';
export const REFERENCE_MUTED_COLOR = '#6A6A72';

// Shared constants for waveform components
export const WAVEFORM_CONSTANTS = {
  BAR_COUNT: 160,
  BAR_WIDTH: 1,
  BAR_GAP: 3,
  MAX_HEIGHT: 32,
  MIN_HEIGHT: 2,
  BAR_COLOR: RECORD_COLOR,
  STATIC_BAR_COLOR: '#ffffff',
  GLOW_COLOR: RECORD_COLOR,
} as const;
