-/* Default colors (colorname index)
- foreground, background, cursor, unfocused cursor */
-#define DefaultFG 7
-#define DefaultBG 0
-#define DefaultCS 16
-#define DefaultUCS 17
-
-/* Special keys (change & recompile st.info accordingly)
- Keep in mind that kpress() in st.c hardcodes some keys.
-
- Mask value:
- * Use XK_ANY_MOD to match the key no matter modifiers state
- * Use XK_NO_MOD to match the key alone (no modifiers)
-
- key, mask, output */
+
+/*
+ * Default colors (colorname index)
+ * foreground, background, cursor, unfocused cursor
+ */
+static unsigned int defaultfg = 7;
+static unsigned int defaultbg = 0;
+static unsigned int defaultcs = 256;
+static unsigned int defaultucs = 257;
+
+/*
+ * Special keys (change & recompile st.info accordingly)
+ * Keep in mind that kpress() in st.c hardcodes some keys.
+ *
+ * Mask value:
+ * * Use XK_ANY_MOD to match the key no matter modifiers state
+ * * Use XK_NO_MOD to match the key alone (no modifiers)
+ */
+
+/* key, mask, output */