diff --git a/app/static/sass/main.sass b/app/static/sass/main.sass index f1ade76..55ed94c 100644 --- a/app/static/sass/main.sass +++ b/app/static/sass/main.sass @@ -1,5 +1,5 @@ -$bg: #222 -$fg: #ccc +$bg: #110f13 +$fg: #f4ead5 html, body height: 100% @@ -18,6 +18,10 @@ body font-family: 'Droid Sans Mono', monospace outline: none color: $fg + /* text-shadow: 0 0 10px + span + /* text-shadow: 0 0 10px + .terminal-cursor color: $bg diff --git a/app/static/stylesheets/main.css b/app/static/stylesheets/main.css index 6f50cd4..54f7793 100644 --- a/app/static/stylesheets/main.css +++ b/app/static/stylesheets/main.css @@ -5,7 +5,7 @@ html, body { /* line 7, ../sass/main.sass */ body { - background-color: #222222; + background-color: #110f13; } /* line 10, ../sass/main.sass */ body main { @@ -19,10 +19,15 @@ body main .terminal { flex: 1; font-family: "Droid Sans Mono", monospace; outline: none; - color: #cccccc; + color: #f4ead5; + /* text-shadow: 0 0 10px */ } /* line 22, ../sass/main.sass */ -body main .terminal-cursor { - color: #222222; - background-color: #cccccc; +body main .terminal span { + /* text-shadow: 0 0 10px */ +} +/* line 26, ../sass/main.sass */ +body main .terminal-cursor { + color: #110f13; + background-color: #f4ead5; } diff --git a/run.py b/run.py index 5acd3a2..6c7c124 100755 --- a/run.py +++ b/run.py @@ -3,13 +3,14 @@ from multiprocessing import Process from subprocess import Popen from glob import glob import time +import sys import shlex commands = [ 'coffee -wcb -j app/static/javascripts/main.js ' + ' '.join(glob('app/static/coffees/*.coffee')), 'compass watch app/static', - 'python serve.py' + 'python serve.py ' + ' '.join(sys.argv[1:]) ] diff --git a/serve.py b/serve.py index 5111710..3e22a80 100644 --- a/serve.py +++ b/serve.py @@ -18,9 +18,11 @@ tornado.options.parse_command_line() from logging import getLogger -log = getLogger('wsterm') -log.setLevel(10 if tornado.options.options.debug else 30) +for logger in ('tornado.access', 'tornado.application', + 'tornado.general', 'wsterm'): + getLogger(logger).setLevel(10 if tornado.options.options.debug else 30) +log = getLogger('wsterm') log.debug('Starting server') ioloop = tornado.ioloop.IOLoop.instance()