~tardypad/wend

f33943e83b31ebbcc99b1b045302ec695370b1d9 — Damien Tardy-Panis 4 months ago b80a416
Make light theme the default

Better for most users
2 files changed, 5 insertions(+), 5 deletions(-)

M doc/takang.scd
M src/options.c
M doc/takang.scd => doc/takang.scd +3 -3
@@ 20,7 20,7 @@ Display text content in window and a presenter view in the terminal.

*-b*, *--background-color* _color_
	Background color in [#]RRGGBB[AA] format++
default: #34373BFF (dark opaque)
default: #F2F7FCFF (light opaque)

*-c*, *--clock* [_duration_]
	Display clock in presenter view++


@@ 42,7 42,7 @@ Drawback: part of a large content may not be visible

*-f*, *--foreground-color* _color_
	Foreground color in [#]RRGGBB[AA] format++
default: #F2F7FCFF (light opaque)
default: #34373BFF (dark opaque)

*-F*, *--font* _font_
	Font description in Pango format++


@@ 68,7 68,7 @@ valid corners:
	Theme to apply++
It currently only sets foreground and background colors++
If custom colors are needed, see *-b* and *-f*++
default: _dark_++
default: _light_++
valid themes:
	- _dark_ (dark background, light foreground)
	- _light_ (light background, dark foreground)

M src/options.c => src/options.c +2 -2
@@ 35,8 35,8 @@ static struct tk_options *tk_options_init() {

    options->initial_width = 640;
    options->initial_height = 480;
    options->background_color = dark_color;
    options->foreground_color = light_color;
    options->background_color = light_color;
    options->foreground_color = dark_color;
    options->use_transparent_background = false;
    options->font_description = "sans-serif 80";
    options->use_server_side_decoration = false;