From f7c11f5771868299d56625cb69b5df4d9cd4b300 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 16 Apr 2011 01:26:29 +0900 Subject: [PATCH] fix accidental inverted colours --- anki/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anki/models.py b/anki/models.py index 3344762a4..1503a672b 100644 --- a/anki/models.py +++ b/anki/models.py @@ -24,7 +24,7 @@ defaultField = { 'font': "Arial", 'qsize': 20, 'esize': 20, - 'qcol': "#fff", + 'qcol': "#000", 'pre': True, } @@ -36,7 +36,7 @@ defaultTemplate = { 'afmt': "", 'hideQ': False, 'align': 0, - 'bg': "#000", + 'bg': "#fff", 'emptyAns': True, 'typeAns': None, 'gid': None