changeset 140:4dd98ea3b475

Minor change in the default color theme.
author Mikhail Kryshen <mikhail@kryshen.net>
date Mon, 07 Jan 2013 19:54:13 +0400
parents 173616375eb5
children 534d954de537
files src/net/kryshen/indyvon/core.clj
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/src/net/kryshen/indyvon/core.clj	Mon Jan 07 19:52:23 2013 +0400
     1.2 +++ b/src/net/kryshen/indyvon/core.clj	Mon Jan 07 19:54:13 2013 +0400
     1.3 @@ -78,8 +78,8 @@
     1.4  (defn default-theme []
     1.5    (Theme. Color/BLACK
     1.6            Color/WHITE
     1.7 -          (Color. 0xC8 0xD2 0xD8)
     1.8 -          (Color. 0 0 0xC8)
     1.9 +          (Color. 0xDD 0xDD 0xDD)
    1.10 +          (Color. 0 0 0xCC)
    1.11            (Color. 0x44 0x44 0x44)
    1.12            (Font. "Sans" Font/PLAIN 12)))
    1.13