#include <newt.h>
#include <stdlib.h>

#include "install.h"

void setColorState(void) {
    int rc;

    if (kickstart) return;
  
    rc = newtWinChoice("Color Choices", "Yes", "No", 
			"Are you using a color monitor?");
 
    if (rc != 1)
        unsetenv("NEWT_MONO");
}

