This is the midnight theme repository for the kitty terminal emulator.
This repository has been archived on 2024年04月27日 . You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
Midnight Theme — kitty terminal emulator
midnight theme kitty logo
This is the midnight theme repository for the kitty terminal emulator.
Colors
The general definition of the colors and specification how to use them can be found in the meta project of the midnight theme.
Color Scheme
The color scheme uses additional shades of the defined color palette.
| Color | Description | |
|---|---|---|
| #302d32 | #302d321 |
The background color for deleted changes in a diff. |
| #263223 | #2632231 |
The background color for added changes in a diff. |
| #305125 | #3051251 |
The important marker background color for insertions in a diff. |
| #0f494b | #0f494b1 |
The background color for search results. |
Release
A public release will be created when a git tag gets pushed to GitLab. The changelog must be added manually to that release.
The release workflow is as follows:
Note: X.X.X must be replaced with the release version.
- Update the
CHANGELOG.mdusing git-cliff- Command:
git cliff --config .config/cliff.toml --output CHANGELOG.md --tag X.X.X
- Command:
- Add and commit all changes
- Command:
git add . && git commit -m "chore(release): prepare for version X.X.X"
- Command:
- Create a signed tag
- Command:
git tag -s X.X.X -m "chore(release): version X.X.X"
- Command:
- Push everything
- Command:
git push && git push --tags
- Command:
-
Taken from the IntelliJ project. ↩︎