Button Colours (Good, Again)
<10kB. Updated 2022-09-27.
The author has shared 2 other
item(s).
Description
Download
As add-ons are programs downloaded from the internet, they are potentially malicious. You should only download add-ons you trust.
Supported Anki versions:
- 2.1.0-2.1.34 (Updated 2020-02-09)
- 2.1.35-2.1.49 (Updated 2021-04-07)
- 2.1.50-2.1.54+ (Updated 2022-09-27)
To download this add-on, please copy and paste the following code into Anki 2.1:
2494384865
If you were linked to this page from the internet, please open Anki on your computer, go to the Tools->Add-ons menu item, then click on Get Add-ons and paste in the code.
All Anki 2.1.x Add-Ons Contact Author
Reviews

Works well

Much better than default style!

Beatifull

Working great on Anki 2.1.58

works great and fit's nicely with the new anki theme

Muito top

Nice

Better colorscheme (Good combine with Anki-redesign):
"colours": {
"2 answers": [
"#D32F2F",
"#0DA415"
],
"3 answers": [
"#D32F2F",
"#0DA415",
"#0e7ec8"
],
"4 answers": [
"#D32F2F",
"#2F4651",
"#0DA415",
"#0e7ec8"
]
}
"colours": {
"2 answers": [
"#D32F2F",
"#0DA415"
],
"3 answers": [
"#D32F2F",
"#0DA415",
"#0e7ec8"
],
"4 answers": [
"#D32F2F",
"#2F4651",
"#0DA415",
"#0e7ec8"
]
}

Better colors: Tools -> Add-ons -> Button Colours Good Again -> Config ->
{
"colours": {
"2 answers": [
"salmon",
"greenyellow"
],
"3 answers": [
"salmon",
"greenyellow",
"deepskyblue"
],
"4 answers": [
"salmon",
"orange",
"greenyellow",
"deepskyblue"
]
}
}
{
"colours": {
"2 answers": [
"salmon",
"greenyellow"
],
"3 answers": [
"salmon",
"greenyellow",
"deepskyblue"
],
"4 answers": [
"salmon",
"orange",
"greenyellow",
"deepskyblue"
]
}
}

But green is too dark and I can't see it on dark background

nice

Thanks!

Excelente. Ajuda bastante. Fica mais bonito.

Great

I love it!!! Is there a possibility to increase the number of buttons?

Nice

Excellent add on which makes the buttons easier to distinguish and use.

nice to have

Really nice

Nice!

it's pretty Ü

Thanks

good

Utility

Simply helpful.

Great, thanks a lot!

Nice

amazing man

Must have

good, made my anki colorful.

nice

Thanks!

Gooood

It does what it promises.

works just fine

Pretty

Sweet little upgradation.

Thank you :3

Damn useful

It does what it says, it only modifies the text color so it doesn't cause any incompatibility issues such as blurry fonts or too big fonts. It's simple yet effective.

Anki= memorisation= 暗記

Works well

I like it more than vanilla :)

Good!

Super!

this add-on is awesome. thanks so much!

Love it

Mariana loves this!!!

Nice, this really brings those ankidroid vibes.

bom

Facilita a fixação.

Nice!

The best addon for button colours. Simple, does the job without distraction.

good

Pretty good. Thank you

pretty good

Colour looks great.

does the job and makes the buttons color-coded

Good!

it really good

Great add-on. Also, what the hell is wrong with this moron who commented before me? Of course it only colours two buttons, you absolute moron, it even says it in the title. Were you dropped as a baby?

It only colors 2 of the 4 buttons.

nice

good

_

Good

Util

works great

Nice

awesome!

Perfect

great!thanks

Simple and great!
Even the colours can be individualised <3
Even the colours can be individualised <3

Thanks!

As good as 2.0 v

works

I like the colors :)

Wow, this is cool, we even can change the picture with our own picture/photo collections

good

Thank you!!! It works fantastic

Amzing !!

Works as stated, great

thank you

Thank you

good

Awesome

Effective.

good

You should add blue color to easy.

Nice!

colors, am I right?

It is a lot like AnkiDroid.

Nice add

Good!

nice adding feature with colourful button

This add-on is so good

works well, thanks

Works as it should!

Works as expected

Works a treat. Thanks

Better interface, more enjoyable reviews

I'm a simple man. I see colours, I click like.

awesome

Quick and easy. Very nice!

Facilita.

Good! Thank you

Works as you'd expect it to; great.

With the colors hack posted below its really nice

I found out that if you thumbs down this add-on then it drops from 1st to 3rd. Trolls have way too much power.

it is a useful function.

Simple colors, huge convenience.

Colour!

I like to have the colors

working as desired, simple but helpful

Simple, but very helpful!

ㅇㅋ

Simple yet effective

Works great, thank you.

Simple and clean, yet extremely powerful because it adds subtle enhancement to your every single interaction with your cards. Irreplaceable for me.

Nice little touch. Brings a little color and sureness to your study.

really nice little add-on

awesome

*****

It's nice.

cose

useful

It works!! Thanks :)

To all the gripers about the color selection not matching ankidroid, just edit the addon and have a look at the code. It's not totally straight forward, but you can adjust it from there. Here are my changes, but ymmv:
# Get reviewer class
from aqt.reviewer import Reviewer
# Replace _answerButtonList method
def answerButtonList(self):
l = ((1, "<font color='crimson'>" + _("Again") + "</font>"),)
cnt = self.mw.col.sched.answerButtons(self.card)
if cnt == 2:
return l + ((2, "<font color='limegreen'>" + _("Good") + "</font>"),)
elif cnt == 3:
return l + ((2, "<font color='limegreen'>" + _("Good") + "</font>"), (3, "<font color='cornflowerblue'>" + _("Easy") + "</font>"))
else:
return l + ((2, "<font color='crimson'>" + _("Hard") + "</font>"), (3, "<font color='limegreen'>" + _("Good") + "</font>"), (4, "<font color='cornflowerblue'>" + _("Easy") + "</font>"))
Reviewer._answerButtonList = answerButtonList
# Get reviewer class
from aqt.reviewer import Reviewer
# Replace _answerButtonList method
def answerButtonList(self):
l = ((1, "<font color='crimson'>" + _("Again") + "</font>"),)
cnt = self.mw.col.sched.answerButtons(self.card)
if cnt == 2:
return l + ((2, "<font color='limegreen'>" + _("Good") + "</font>"),)
elif cnt == 3:
return l + ((2, "<font color='limegreen'>" + _("Good") + "</font>"), (3, "<font color='cornflowerblue'>" + _("Easy") + "</font>"))
else:
return l + ((2, "<font color='crimson'>" + _("Hard") + "</font>"), (3, "<font color='limegreen'>" + _("Good") + "</font>"), (4, "<font color='cornflowerblue'>" + _("Easy") + "</font>"))
Reviewer._answerButtonList = answerButtonList

Works! Would be better if Easy is blue to match AnkiDroid

Nice job!
Maybe button colors? as in the android version
Maybe button colors? as in the android version

It works!

Not an addon that will change your experience, but it will make it a little bit better

Nice addon, it would be even better if "Easy" was colored in blue, like in AnkiDroid.

Great Add-on
PLEASE, I REQUEST THIS ADD-ON TO BE DEVELOPPED FOR ANKI 2.1, TOO.:)
PLEASE, I REQUEST THIS ADD-ON TO BE DEVELOPPED FOR ANKI 2.1, TOO.:)





























Does exactly what its suppose to do.
Im happy, I like stuff color coded and this does nothing more or less than what it promise.
Im happy, I like stuff color coded and this does nothing more or less than what it promise.















