94 lines
3.5 KiB
Markdown
94 lines
3.5 KiB
Markdown
### **Table of Contents**
|
|
|
|
- [Forking Monkeytype](#forking-monkeytype)
|
|
- [Creating Themes](#creating-themes)
|
|
- [Committing Themes](#committing-themes)
|
|
- [Theme Guidelines](#theme-guidelines)
|
|
|
|
### Forking Monkeytype
|
|
|
|
First you will have to make a personal copy of the Monkeytype repository, also known as "forking". Go to the [Monkeytype repo](https://github.com/monkeytypegame/monkeytype/) and then click the "fork" button.
|
|
|
|
<img width="1552" alt="Screenshot showing location of the fork button on GitHub." src="https://user-images.githubusercontent.com/83455454/149194972-23343642-7a1f-4c0c-b5f2-36f4b39a2639.png">
|
|
|
|
## Creating Themes
|
|
|
|
Pick a name for your theme. It must be all lowercase, with spaces replaced by underscores.
|
|
|
|
Go to `./packages/schemas/src/themes.ts` and add your new theme name to the __end__ of the `ThemeNameSchema` enum. Make sure to end the line with a comma.
|
|
|
|
```typescript
|
|
export const ThemeNameSchema = z.enum([
|
|
"8008",
|
|
"80s_after_dark",
|
|
... all existing theme names
|
|
"your_theme_name",
|
|
]);
|
|
```
|
|
|
|
Then, go to `./frontend/src/ts/constants/themes.ts` and add the following code to the __end__ of the `themes` object near to the very end of the file:
|
|
|
|
```typescript
|
|
export const themes: Record<ThemeName, Theme> = {
|
|
... all existing themes
|
|
your_theme_name: {
|
|
bg: "#ffffff",
|
|
caret: "#ffffff",
|
|
main: "#ffffff",
|
|
sub: "#ffffff",
|
|
subAlt: "#ffffff",
|
|
text: "#ffffff",
|
|
error: "#ffffff",
|
|
errorExtra: "#ffffff",
|
|
colorfulError: "#ffffff",
|
|
colorfulErrorExtra: "#ffffff",
|
|
},
|
|
}
|
|
```
|
|
|
|
Here is an image showing what all the properties correspond to:
|
|
<img width="1552" alt="Screenshot showing the page elements controlled by each color property" src="https://user-images.githubusercontent.com/83455454/149196967-abb69795-0d38-466b-a867-5aaa46452976.png">
|
|
|
|
If you don't want to add any custom styling you can skip the next section.
|
|
|
|
|
|
#### Adding custom CSS (optional)
|
|
|
|
Create a CSS file in `./frontend/static/themes/` matching the name you picked earlier. Update the theme configuration in `./frontend/src/ts/constants/themes.ts` and add `hasCss: true` like this:
|
|
|
|
```typescript
|
|
export const themes: Record<ThemeName, Theme> = {
|
|
... all existing themes
|
|
your_theme_name: {
|
|
bg: "#ffffff",
|
|
caret: "#ffffff",
|
|
main: "#ffffff",
|
|
sub: "#ffffff",
|
|
subAlt: "#ffffff",
|
|
text: "#ffffff",
|
|
error: "#ffffff",
|
|
errorExtra: "#ffffff",
|
|
colorfulError: "#ffffff",
|
|
colorfulErrorExtra: "#ffffff",
|
|
hasCss: true,
|
|
},
|
|
}
|
|
```
|
|
|
|
|
|
### Committing Themes
|
|
|
|
Once you have created your theme(s), you now need to create a pull request to the main Monkeytype repository. Go to the branch where you created your new theme on GitHub. Then make sure your branch is up to date. Once it is up to date, click "contribute".
|
|
|
|
Update branch:
|
|
<img width="1552" alt="Screenshot showing how to update the fork to match the main Monkeytype repository" src="https://user-images.githubusercontent.com/83455454/149186547-5b9fe4fd-b944-4eed-a959-db43f96198bf.png">
|
|
|
|
Create a pull request:
|
|
<img width="1552" alt="Screenshot showing how to create a pull request to the main Monkeytype repository" src="https://user-images.githubusercontent.com/83455454/149186637-66dae488-05ae-45c4-9217-65bc36c4927b.png">
|
|
|
|
Add some screenshots of your theme to the pull request. Click "create pull request" and if it gets approved then your new theme is available on Monkeytype for everyone to enjoy.
|
|
|
|
## Theme Guidelines
|
|
|
|
Make sure your theme follows the [Theme guidelines](./CONTRIBUTING.md#theme-guidelines).
|