diff options
author | Nick White <git@njw.me.uk> | 2013-11-22 11:46:30 +0000 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2013-11-22 11:46:30 +0000 |
commit | 6bc1dff7b13029be6c1d631f09aca2bf6ab9283c (patch) | |
tree | bcd5184d0a67d96dec7ac4b4eb9b3eea61ba315f | |
parent | 0ce06468cccf39214e20dc1e676081dcee99c755 (diff) | |
download | tkread-6bc1dff7b13029be6c1d631f09aca2bf6ab9283c.tar.bz2 tkread-6bc1dff7b13029be6c1d631f09aca2bf6ab9283c.zip |
Update colours used
-rwxr-xr-x | tkread | 26 |
1 files changed, 17 insertions, 9 deletions
@@ -14,8 +14,14 @@ # - add more markdown processing and control it using a flag # - use font create / configure to name a font to simplify changing its size -set fontsize 20 -set colour #554422 +set fontsize 15 +set textcolour #443322 +set bgcolour #eeeeee +set outercolour #f8f8f5 +set inverttextcolour #eeeeee +set invertbgcolour #333030 +set invertoutercolour #222222 + set inverted 0 set drag 0 set tagnum 0 @@ -99,15 +105,17 @@ proc changeFontSize {change} { } proc invertColours {} { - global inverted colour + global inverted + global bgcolour textcolour outercolour + global invertbgcolour inverttextcolour invertoutercolour if {$inverted} { set inverted 0 - .t configure -bg white -fg $colour - . configure -bg #f8f8f5 + .t configure -bg $bgcolour -fg $textcolour + . configure -bg $outercolour } else { set inverted 1 - .t configure -bg $colour -fg #eeeeee - . configure -bg #222222 + .t configure -bg $invertbgcolour -fg $inverttextcolour + . configure -bg $invertoutercolour } } @@ -126,8 +134,8 @@ proc doMotion {ypos} { set lasty $ypos } -. configure -bg #f8f8f5 -text .t -font "Times $fontsize" -wrap word -width 64 -padx [expr $fontsize * 3] -bg white -fg $colour -relief flat -inactiveselectbackground {} -cursor {} +. configure -bg $outercolour +text .t -font "Times $fontsize" -wrap word -width 64 -padx [expr $fontsize * 3] -bg $bgcolour -fg $textcolour -relief flat -inactiveselectbackground {} -cursor {} pack .t -expand yes -fill y set text [read stdin] if { $::argc > 0 && [lindex $::argv 0] == "-w" } { |