import React from 'react'; import Image from 'next/image'; interface FormatInstructionsProps { isOpen: boolean; onClose: () => void; isDarkMode: boolean; } const FormatInstructions: React.FC = ({ isOpen, onClose, isDarkMode }) => { if (!isOpen) return null; return (

Color Scheme Installation Instructions

YAML (Alacritty)

  1. Download the YAML file.
  2. Place it in your Alacritty configuration directory (usually ~/.config/alacritty/).
  3. In your alacritty.yml file, add: import: [/path/to/your/theme.yml]

JSON

JSON format can be used in various terminals. Refer to your terminal's documentation for specific instructions.

XResources

  1. Download the XResources file.
  2. Add the contents to your ~/.Xresources file.
  3. Run xrdb ~/.Xresources to reload.

TOML (Alacritty)

  1. Download the TOML file.
  2. Place it in your Alacritty configuration directory.
  3. In your alacritty.toml file, add: import = ["/path/to/your/theme.toml"]

iTerm2

  1. Download the iTerm2 color scheme file.
  2. Open iTerm2 preferences.
  3. Go to Profiles > Colors.
  4. Click on "Color Presets..." and choose "Import..."
  5. Select the downloaded file.

Windows Terminal

  1. Download the JSON file.
  2. Open Windows Terminal settings.
  3. In the "schemes" array, add the contents of the downloaded JSON file.
  4. In your profile, set "colorScheme" to the name of your new scheme.

Terminal.app (macOS)

  1. Download the Terminal.app color scheme file.
  2. Double-click the downloaded file to import it into Terminal.app.
  3. In Terminal.app preferences, select the imported profile.
); }; export default FormatInstructions;