midnight-theme/micro
Archived
1
0
Fork
You've already forked micro
0
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.
Michael Wagner-Leitl c5e6b2f289
All checks were successful
ci/woodpecker/tag/release Pipeline was successful
ci: use builder image ( #5 )
Closes: #5 
2022年12月17日 16:55:30 +01:00
.config ci: add pipeline configuration ( #2 , !4 ) 2022年12月15日 18:48:56 +00:00
.idea chore: update project for the move to codeberg.org ( #1 , !3 ) 2022年12月13日 18:45:49 +00:00
.woodpecker ci: use builder image ( #5 ) 2022年12月17日 16:55:30 +01:00
etc chore: initial commit 2022年08月14日 14:49:34 +02:00
.editorconfig chore: update project for the move to codeberg.org ( #1 , !3 ) 2022年12月13日 18:45:49 +00:00
.gitattributes chore: update project for the move to codeberg.org ( #1 , !3 ) 2022年12月13日 18:45:49 +00:00
.gitignore chore: initial commit 2022年08月14日 14:49:34 +02:00
CHANGELOG.md chore(release): prepare for version 1.0.0 2022年12月15日 19:49:42 +01:00
CODE_OF_CONDUCT.md chore: initial commit 2022年08月14日 14:49:34 +02:00
CONTRIBUTING.md chore: update project for the move to codeberg.org ( #1 , !3 ) 2022年12月13日 18:45:49 +00:00
LICENSE chore: add license 2022年08月14日 17:19:50 +02:00
midnight-inherit.micro chore: initial commit 2022年08月14日 14:49:34 +02:00
midnight-tc.micro chore: initial commit 2022年08月14日 14:49:34 +02:00
README.md chore: update project for the move to codeberg.org ( #1 , !3 ) 2022年12月13日 18:45:49 +00:00

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.

  1. Update the CHANGELOG.md using git-cliff
    • Command: git cliff --config .config/cliff.toml --output CHANGELOG.md --tag X.X.X
  2. Add and commit all changes
    • Command: git add . && git commit -m "chore(release): prepare for version X.X.X"
  3. Create a signed tag
    • Command: git tag -s X.X.X -m "chore(release): version X.X.X"
  4. Push everything
    • Command: git push && git push --tags

  1. Taken from the IntelliJ project. ↩︎