mirror of
https://codeberg.org/scip/epuppy.git
synced 2025-12-16 20:11:00 +01:00
- add color and color config support - fix epub parsing - add variable margin (left and right arrow keys) - add help screen (hit `?`) - add config file support
17 lines
257 B
TOML
17 lines
257 B
TOML
# color setting for dark mode
|
|
colordark = {
|
|
body = "#ffffff",
|
|
title = "#7cfc00",
|
|
chapter = "#ffff00"
|
|
}
|
|
|
|
# color setting for light mode
|
|
colorlight = {
|
|
body = "#000000",
|
|
title = "#8470ff",
|
|
chapter = "#00008b"
|
|
}
|
|
|
|
# always use dark mode
|
|
dark = true
|