Files
milsko/src/default.c
NishiOwO e5e0de7765 add progressbar
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@525 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-30 23:16:03 +00:00

17 lines
339 B
C

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