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

How to Use TerminalTinder

Welcome to TerminalTinder, the dating app that actually designed to be used over and over again.

How it works:

  1. You'll be presented with color schemes one at a time.
  2. Swipe right or click the heart icon to like a scheme.
  3. Swipe left or click the cross icon to dislike a scheme.
  4. The app learns from your preferences and generates new schemes based on what you like.

Features:

  • View a live preview of the color scheme applied to code.
  • Change the programming language of the preview in the settings.
  • Download color schemes in various formats (YAML, JSON, TOML, Xresources).
  • View your liked and disliked schemes in the history.

The more you interact with TerminalTinder, the better it becomes at suggesting color schemes. All information is local, so refreshing the page refreshes learning.

Made with ❤️ by DWS - It's your internet, take it back.


All credit for any non generated color schemes goes to their original creators. Color schemes are sourced from Gogh.

); }; export default HelpDialog;