https://github.com/marcelwgn/indentrainbow
Visual Studio extension for colorization of indent levels
https://github.com/marcelwgn/indentrainbow
visual-studio visual-studio-extension
Last synced: 10 months ago
JSON representation
Visual Studio extension for colorization of indent levels
- Host: GitHub
- URL: https://github.com/marcelwgn/indentrainbow
- Owner: marcelwgn
- License: mit
- Created: 2019-03-15T22:04:27.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2025-07-19T15:12:29.000Z (11 months ago)
- Last Synced: 2025-07-19T17:43:04.039Z (11 months ago)
- Topics: visual-studio, visual-studio-extension
- Language: C#
- Homepage: https://marketplace.visualstudio.com/items?itemName=chingucoding.IndentRainbow
- Size: 895 KB
- Stars: 33
- Watchers: 2
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# IndentRainbow
### Visual Studio extension for colorization of indent levels.
You can download the latest version of this extension on the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=chingucoding.IndentRainbow).
Screenshots of the extension can be found in [this folder](./docs) or on the extension page linked above.
### Summary
The aim of this extension is to make it easier to differentiate different levels of indentation in your source code.
This is done by coloring the indentations in the source code.
### Project structure
This project has the following structure:
* src
* IndentRainbow.Extension <- VSIX Extension
* IndentRainbow.Logic <- Core logic of extension
* tests
* IndentRainbow.Logic.Tests <- Unit tests for the core logic.
To build the project, you will need to install the Visual Studio 2022 and "Visual Studio extension development" features.
### Inspiration
This project was inspired by this project/extension for VS Code:
[https://github.com/oderwat/vscode-indent-rainbow](https://github.com/oderwat/vscode-indent-rainbow)