milsko/src/default.c

16 lines
342 B
C
Raw Normal View History

/* $Id$ */
#include <Mw/Milsko.h>
const char* MwDefaultBackground = "#ddd";
const char* MwDefaultForeground = "#000";
const char* MwDefaultDarkBackground = "#333";
const char* MwDefaultDarkForeground = "#ddd";
int MwGetDefaultBorderWidth(MwWidget handle) {
if(MwGetInteger(handle, MwNmodernLook)) {
return 1;
} else {
return 2;
}
}