From 3f95d803f0397c5bd0e16c9a0ecffae1bca83d51 Mon Sep 17 00:00:00 2001 From: glowy <83473782+batsoup804@users.noreply.github.com> Date: Mon, 6 Dec 2021 06:34:49 -0800 Subject: [PATCH] Added GMK modern ink theme (#2145) by batsoup804 Not close to any other monkeytype theme as far as I can see. --- static/themes/modern_ink.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 static/themes/modern_ink.css diff --git a/static/themes/modern_ink.css b/static/themes/modern_ink.css new file mode 100644 index 000000000..3d01b437b --- /dev/null +++ b/static/themes/modern_ink.css @@ -0,0 +1,31 @@ +:root{ + --bg-color: #ffffff; + --main-color: #ff360d; + --caret-color: #ff0000; + --sub-color: #ff0000; + --text-color: #000000; + --error-color: #d70000; + --error-extra-color: #b00000; + --colorful-error-color: #ff1c1c; + --colorful-error-extra-color: #b00000; +} + +#menu .icon-button:nth-child(1) { + color: #ff0000; +} + +#menu .icon-button:nth-child(5) { + color: #ff0000; +} + +.word letter.incorrect { + -webkit-transform: scale(0.5) translate(-100%, -100%); +} + +.word letter.incorrect.extra { + -webkit-transform: scale(0.5); +} + +.word.error{ + border-bottom: solid 2px #ff0000; +}