Index: main/widget/generic.lisp
===================================================================
--- main/widget/generic.lisp	(revision main,45)
+++ main/widget/generic.lisp	(revision main,46)
@@ -1,6 +1,7 @@
 (defpackage #:tui-widget-generic
   (:use #:cl)
-  (:export #:text #:widget #:parent-window #:column #:row #:scroll
-           #:insertion-point #:destroy #:draw #:activate))
+  (:export #:text #:widget #:parent-window #:column #:row #:inactive-background
+           #:active-background #:scroll #:insertion-point #:destroy #:draw
+           #:activate))
 
 (in-package #:tui-widget-generic)
@@ -23,5 +24,8 @@
   ((parent-window :initarg :parent-window)
    (column :type (integer 0) :initarg :column)
-   (row :type (integer 0) :initarg :row)))
+   (row :type (integer 0) :initarg :row)
+   ;; TODO: initform for bg-color
+   (inactive-background :initarg :inactive-background)
+   (active-background :initarg :active-background)))
 
 (defclass scroll ()
