This is the midnight theme repository for the micro editor.
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 — micro editor
midnight theme micro logo
This is the midnight theme repository for the micro editor.
Colors
The general definition of the colors and specification how to use them can be found in the meta project of the midnight theme.
The midnight-tc.micro file defines the hex colors according to the theme.
The midnight-inherit.micro file uses ANSI names to set the colors, which inherits the colors from the terminal
emulator.
Color Scheme
The color scheme uses additional shades of the defined color palette.
| Color | Description | |
|---|---|---|
| #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. ↩︎