Skip to content

Commit

Permalink
Merge pull request #26 from gamer-ai/v0.3.2-beta
Browse files Browse the repository at this point in the history
v0.3.2-beta/new-theme-cool-kid-and-remove-some-offending-words-from-chinese-vocab
  • Loading branch information
MUYANGGUO authored Sep 25, 2022
2 parents ce79e1e + a7e510f commit 8ca8e63
Show file tree
Hide file tree
Showing 5 changed files with 5,023 additions and 7 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ Discord: ![Discord](https://img.shields.io/discord/993567075589181621?style=for-
- Eng Normal: Top 1000 most frequent used English words
- CHN Pinyin Hard: Chinese top 1500 idioms
- CHN Pinyin Normal: Chinese top 5000 words/char
- support three tests duration 90s, 60s, 30s, 15s
- support four tests duration 90s, 60s, 30s, 15s
- Sentence mode
- CHN: Random chinese short sentences
- ENG: Random English short sentences
- Support three Sentences Count Setting: 5, 10, 15
- Support three sentences count setting: 5, 10, 15
- Stats:
- WPM
- KPM
- Accuracy
- Error analysis (correct/error/missing/extra chars count)
- Pacing Style (word pulse/ character caret):
- Pulse mode: the active word will have an underlien pulse, which helps improve the speed typing habit.
- Pulse mode: the active word will have an underline pulse, which helps improve the speed typing habit.
- Caret mode: a pacing caret, advancing character by character, which aligns normal typing habit.

#### 2. Words Card (for English learners)
Expand Down Expand Up @@ -80,6 +80,7 @@ Discord: ![Discord](https://img.shields.io/discord/993567075589181621?style=for-
- Araki Nobuyoshi
- Hero
- Budapest
- Cool Kid

#### 7. LocalStorage persist for essential settings

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eletype",
"version": "0.3.1",
"version": "0.3.2",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.0",
Expand Down
5,003 changes: 5,002 additions & 1 deletion src/assets/Vocab/Chinese5000WordsPinyin.json

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions src/style/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,18 @@ const pianoTheme = {
textShadow: "0px -1px 0px rgba(0,0,0,0.3)"
};

const coolKidTheme = {
label: "Cool Kid",
background: "#112E96",
text: "#EA00BA",
gradient: "linear-gradient(to top, #16C4ED, #EA00BA)",
title: "#ECECEC",
textTypeBox: "#090261",
stats: "#EA00BA",
fontFamily: "Tomorrow",
textShadow: "0px -1px 0px rgba(0,0,0,0.3)"
};

const defaultTheme = darkTheme;

const themesOptions = [
Expand All @@ -146,6 +158,7 @@ const themesOptions = [
{ value: steamTheme, label: "Steam" },
{ value: arakiNobuyoshiTheme, label: "Araki Nobuyoshi" },
{ value: heroTheme, label: "Hero" },
{ value: coolKidTheme, label: "Cool Kid" },
{ value: budapestTheme, label: "Budapest" },
{ value: lightTheme, label: "Light" }
];
Expand All @@ -160,6 +173,7 @@ export {
nintendoTheme,
arakiNobuyoshiTheme,
heroTheme,
coolKidTheme,
budapestTheme,
aluminiumTheme,
pianoTheme,
Expand Down

0 comments on commit 8ca8e63

Please sign in to comment.