# -*- mode: python -*-
# todo: for Gtk3 this all should use CSS

style "input-label" {
    fg[NORMAL] = { 0.0, 0.0, 0.5 }
    font_name = "fixed bold 10"
}

style "output-label" {
    fg[NORMAL] = { 0.5, 0.0, 0.0 }
    font_name = "fixed bold 10"
}

style "input-textview" {
    font_name = "fixed 10"
}

style "output-textview" {
    font_name = "fixed 10"
    #base[NORMAL] = { 0.929, 0.929, 0.929, 1.0 }
    #base[NORMAL] = { 1, 1, 1 }
}

widget "*.output-label" style "output-label"
widget "*.input-label" style "input-label"
widget "*.input-textview" style "input-textview"
widget "*.output-textview" style "output-textview"
