You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
754 B
C

#pragma once
#include QMK_KEYBOARD_H
#define C_PRIM {HSV_PURPLE}
#define C_SECO {HSV_GOLD}
#define C_MODI {HSV_MAGENTA}
#define C_TALI {HSV_RED}
#define C_TAL2 {HSV_YELLOW}
#define C_TAL3 {HSV_GREEN}
#define C_RED {HSV_RED}
#define C_GRN {HSV_GREEN}
#define C_ORNG {HSV_ORANGE}
enum layout_names {
_TYPING_LAYER=0,
_TEAMS_LAYER,
_GAME_LAYER,
_UNB_W_LAY,
_UNB_W_LAY_2,
_FUNCTION_LAYER,
_WIN_LAYER,
_TALI_LAYER,
_TALI_LAYER2,
_TALI_LAYER3,
_POM_LAYER,
_POM_LAYER2,
};
extern bool g_suspend_state;
bool disable_layer_color;
enum pom_state {
STOPPED,
RUNNING,
PAUSED
};
enum pom_state current_pom_state;
bool pom_visible;
short poms_completed;
short pom_current_secs;
uint32_t pom_second_start;
void send_alt_code(int);