Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/opipoy/neorg-colors

a plugin that allows to change colors of text in neorg
https://github.com/opipoy/neorg-colors

Last synced: 3 months ago
JSON representation

a plugin that allows to change colors of text in neorg

Awesome Lists containing this project

README

        

# neorg colors
this is a module for neorg that allows for changing the text color
## syntax
for now the syntax of the module is pretty simple and is limited by lines (it can color only lines):
### changing the color on current line
```
@color:
```
#### example:
```
@color:#ff0000 this text color is now red!
```
### changing the color on multible lines
```
&color:

&end_color
```
#### example:
```
&color:#ffffff
this text is now white
and this one is also white
&color:#0000ff
this text is now blue
this one is also blue
&end_color
this is now regular text. it lookes normal
```