Skip to content

Commit fec8e83

Browse files
committed
changed the default config
added word set section in the about
1 parent c24a17b commit fec8e83

2 files changed

Lines changed: 15 additions & 10 deletions

File tree

public/index.html

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>Monkey Type</title>
88
<link rel="stylesheet" href="css/fa.css">
99
<link rel="stylesheet" href="css/style.css">
10-
<link rel="stylesheet" href="themes/dark.css" id="currentTheme">
10+
<link rel="stylesheet" href="themes/serika_dark.css" id="currentTheme">
1111
<link id="favicon" rel="shortcut icon" href="favicon.png">
1212
<meta name="description" content="A super customisable, minimalistic typing test.">
1313
<meta name="keywords" content="typing, test, typing-test, typing test, monkey-type, monkey, type, miodec, wpm">
@@ -118,12 +118,12 @@
118118
<div class="group mode">
119119
<!-- <div class="title">mode</div> -->
120120
<div class="buttons">
121-
<div class="button" mode="time" tabindex="2">time</div>
122-
<div class="button active" mode="words" tabindex="2">words</div>
121+
<div class="button active" mode="time" tabindex="2">time</div>
122+
<div class="button" mode="words" tabindex="2">words</div>
123123
<div class="button" mode="custom" tabindex="2">custom</div>
124124
</div>
125125
</div>
126-
<div class="group wordCount">
126+
<div class="group wordCount hidden">
127127
<!-- <div class="title">words</div> -->
128128
<div class="buttons">
129129
<div class="button" wordCount="10" tabindex="2">10</div>
@@ -134,12 +134,12 @@
134134
<div class="button" wordCount="custom" tabindex="2"><i class="fas fa-tools"></i></div>
135135
</div>
136136
</div>
137-
<div class="group time hidden">
137+
<div class="group time">
138138
<!-- <div class="title">time</div> -->
139139
<div class="buttons">
140140
<div class="button" timeConfig="15" tabindex="2">15</div>
141-
<div class="button active" timeConfig="30" tabindex="2">30</div>
142-
<div class="button" timeConfig="60" tabindex="2">60</div>
141+
<div class="button" timeConfig="30" tabindex="2">30</div>
142+
<div class="button active" timeConfig="60" tabindex="2">60</div>
143143
<div class="button" timeConfig="120" tabindex="2">120</div>
144144
<div class="button" timeConfig="custom" tabindex="2"><i class="fas fa-tools"></i></div>
145145
</div>
@@ -210,6 +210,11 @@ <h1>about</h1>
210210
<p>Monkey-type is a minimalistic typing test, featuring many test modes, an account system to save your
211211
typing speed history and user configurable features like themes, a smooth caret and more.</p>
212212
</div>
213+
<div class="section">
214+
<h1>word set</h1>
215+
<p>By default, the website uses the most common 200 words in the english language to generate its tests.
216+
You can change to an expanded set (1000 most common words) in the options, or change the language entirely.</p>
217+
</div>
213218
<div class="section">
214219
<h1>keybinds</h1>
215220
<p>You can use <key>tab</key> and <key>enter</key> (or just <key>tab</key> if you have quick tab mode enabled) to restart the typing test.

public/js/userconfig.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
let config = {
2-
theme: 'dark',
2+
theme: 'serika_dark',
33
showKeyTips: true,
44
showLiveWpm: false,
55
smoothCaret: true,
66
quickTab: false,
77
punctuation: false,
88
words: 50,
9-
time: 30,
10-
mode: "words",
9+
time: 60,
10+
mode: "time",
1111
language: "english",
1212
fontSize: 1,
1313
freedomMode: false,

0 commit comments

Comments
 (0)