mirror of
https://codeberg.org/scip/tablizer.git
synced 2025-12-16 20:20:57 +01:00
* add color table support (using alternating colorization of rows) using new flag `-L` * add config file support (HCL format) using `~/.config/tablizer/config` or `-f <file>` so the user can customize colors * removed golang 1.17 support
13 lines
406 B
HCL
13 lines
406 B
HCL
# supported colors:
|
|
# black, blue, cyan, darkGray, default, green, lightBlue, lightCyan,
|
|
# lightGreen, lightMagenta, lightRed, lightWhite, lightYellow,
|
|
# magenta, red, white, yellow
|
|
BG = "lightGreen"
|
|
FG = "white"
|
|
HighlightBG = "lightGreen"
|
|
HighlightFG = "white"
|
|
NoHighlightBG = "white"
|
|
NoHighlightFG = "lightGreen"
|
|
HighlightHdrBG = "red"
|
|
HighlightHdrFG = "white"
|