~ chicken-core (chicken-5) 99b8d77be64930464ba9a42e82437a071abc4b60
commit 99b8d77be64930464ba9a42e82437a071abc4b60
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Fri Sep 2 15:55:18 2016 +0200
Commit: Peter Bex <peter@more-magic.net>
CommitDate: Sat Sep 10 12:13:50 2016 +0200
feathers: use more neutral colors, increased font size
Signed-off-by: Peter Bex <peter@more-magic.net>
diff --git a/NEWS b/NEWS
index ec0dd93f..5274c869 100644
--- a/NEWS
+++ b/NEWS
@@ -96,6 +96,9 @@
- Platform support
- CHICKEN now supports the Linux X32 ABI (thanks to Sven Hartrumpf).
+- Tools
+ - Feathers now has a more neutral color scheme and larger font size.
+
- Runtime system:
- The calling convention of CPS procedures has been changed to
use "argument vectors" instead of C calling convention.
diff --git a/feathers.tcl b/feathers.tcl
index a2151d8d..46c4344f 100644
--- a/feathers.tcl
+++ b/feathers.tcl
@@ -55,14 +55,14 @@ set reply(GET_TRACE) 12
set colors(header_foreground) white
set colors(header_background) black
-set colors(text_foreground) gray90
-set colors(text_background) "#102e4e"
-set colors(event_foreground) white
-set colors(event_background) "#203e5e"
+set colors(text_foreground) black
+set colors(text_background) gray90
+set colors(event_foreground) black
+set colors(event_background) white
set colors(breakpoint_foreground) white
set colors(breakpoint_background) DarkRed
set colors(highlight_foreground) white
-set colors(highlight_background) blue
+set colors(highlight_background) CornflowerBlue
set colors(mark_foreground) black
set colors(mark_background) yellow
set colors(trace_background) gray90
@@ -105,7 +105,7 @@ set current_c_line ""
set current_bp_lines {}
set current_bp_globals {}
set font_name "Courier"
-set font_size 11
+set font_size 12
set program_name ""
set search_path {"."}
set data_view ""
Trap