How it works
By default, KAnki displays cards with the target language (the language you’re learning) on the front and your native language on the back. When you activate reversed mode:- The native language appears on the front
- The target language appears on the back
- All cards in your current session are reversed
- Your mode preference is saved between sessions
Toggling card direction
To switch between modes, select the Reverse Cards option from the app menu. The toggle button becomes highlighted when reversed mode is active. From main.js:1351:When you switch modes, the card counter resets to 0 and your position in the deck restarts. This prevents confusion when the card content suddenly changes.
Display logic
The card display function checks theisReversedMode flag to determine which content to show:
From main.js:507:
Mode indicator
The level display at the top of the screen shows your current card direction:Why use reversed cards
Practicing in both directions develops different language skills:Target→Native (Default)
Recognition skill: Understanding when you see or hear the target languageUseful for: Reading, listening comprehension, understanding conversations
Native→Target (Reversed)
Production skill: Actively recalling and producing the target languageUseful for: Speaking, writing, active conversation
Example: Japanese study
Default mode (Target→Native)
Front: こんにちは (konnichiwa)Back: Hello You practice recognizing Japanese words and understanding their meaning.
Reversed mode (Native→Target)
Front: HelloBack: こんにちは (konnichiwa) You practice producing Japanese words from English prompts.
Many language learners find reversed mode significantly more challenging because production (recall) is harder than recognition. This is normal and indicates you’re working on a deeper level of mastery.
Reversed mode with readings
For cards with pronunciation guides (thereading field), the display adapts intelligently:
Normal card structure:
In reversed mode, the front shows: Water The reading is automatically included in the target language display but not in the native language display.
Spaced repetition behavior
Important: Reversed mode does not create separate scheduling for each direction. The same card is used regardless of mode, with the same:- Difficulty level
- Next review date
- Review history
- Statistics
- Reviewing a card in reversed mode advances its spaced repetition schedule
- Both directions share the same difficulty progression
- You can switch modes mid-session without affecting scheduling
If you want separate spaced repetition schedules for each direction, you would need to create separate card entries in your vocabulary configuration.
Persistence
Your mode preference is saved to localStorage along with your deck data. When you reload the app, KAnki restores your last selected mode. From main.js:1367:Combined with other features
Reversed mode works seamlessly with all other KAnki features:- Level filtering: Reverse cards from specific proficiency levels
- Starred cards: Practice starred vocabulary in both directions
- Error review: Review mistakes in either direction
- Statistics: View counts apply regardless of card direction