You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 16, 2025. It is now read-only.
Then edit your config `~/.config/cointop/config.toml` and set the colorscheme you want to use:
20
20
21
21
```toml
22
-
colorscheme = "<colorscheme>"
22
+
colorscheme = "cointop"
23
23
```
24
24
25
25
The colorscheme name is the name of the colorscheme TOML file.
26
26
27
-
For example, if you have `matrix.toml` in `~/.cointop/colors/` then the `colorscheme` property should be set to:
27
+
By default, the colorscheme files should go under `~/.config/cointop/colors/`
28
+
29
+
For example, if you have `matrix.toml` under `~/.config/cointop/colors/matrix.toml` then the `colorscheme` property in `config.toml` should be set to:
28
30
29
31
```toml
30
32
colorscheme = "matrix"
@@ -37,3 +39,96 @@ $ cointop --colorscheme matrix
37
39
```
38
40
39
41
To create your own colorscheme; simply copy an existing [colorscheme](https://github.com/cointop-sh/colors/blob/master/cointop.toml), rename it, and customize the colors.
Copy file name to clipboardExpand all lines: docs/content/faq.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,14 @@ draft: false
41
41
42
42
Copy an existing [colorscheme](https://github.com/cointop-sh/colors/blob/master/cointop.toml) to `~/.config/cointop/colors/` and customize the colors. Then run cointop with `--colorscheme <colorscheme>` to use the colorscheme.
43
43
44
+
## How do I make the background color transparent?
45
+
46
+
Change the background color options in the colorscheme file to `default` to use the system default color, eg. `base_bg = "default"`
47
+
48
+
## Why don't colorschemes support RGB or hex colors?
49
+
50
+
Some of the cointop underlying rendering libraries don't support true colors. See [issue](https://github.com/nsf/termbox/issues/37).
51
+
44
52
## Where is the config file located?
45
53
46
54
The default configuration file is located under `~/.config/cointop/config.toml`
0 commit comments