bottom/tests/valid_configs/styling.toml
Clement Tsang f091ebdc6a
feature: support simple colour settings for text fields too (#1511)
* feature: support simple colour settings for text fields too

* also add 'color' back to some options

* tests
2024-07-30 07:15:23 +00:00

19 lines
399 B
TOML

# Test basic colours
[styles.cpu]
all_entry_color = "255, 50, 50"
# Test tables
[styles.graphs.legend_text]
color = "#fff"
bg_color = "#000"
bold = false
# Test inline tables
[styles.tables]
headers = { color = "red", bg_color = "black", bold = true }
# Test using normal colour where inline table can also work
[styles.widgets]
selected_text = "#fff"
disabled_text = "blue"
text = "255, 0, 255"