Skip to content

Commit

Permalink
jesus christ
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Atlas committed Jul 28, 2023
1 parent ef33f38 commit 6661ea2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/__defines/_macros.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
#define FONT_SIZE_HUGE 4
#define FONT_SIZE_GIANT 5

#define FONT_SMALL(X) ("<font size='1'>" + X + "</font>")
#define FONT_NORMAL(X) ("<font size='2'>" + X + "</font>")
#define FONT_LARGE(X) ("<font size='3'>" + X + "</font>")
#define FONT_HUGE(X) ("<font size='4'>" + X + "</font>")
#define FONT_GIANT(X) ("<font size='5'>" + X + "</font>")
#define FONT_SMALL(X) ("<font size=1>" + X + "</font>")
#define FONT_NORMAL(X) ("<font size=2>" + X + "</font>")
#define FONT_LARGE(X) ("<font size=3>" + X + "</font>")
#define FONT_HUGE(X) ("<font size=4>" + X + "</font>")
#define FONT_GIANT(X) ("<font size=5>" + X + "</font>")

#define MATRIX_DANGER(X) (FONT_LARGE(SPAN_DANGER(X)))
#define MATRIX_NOTICE(X) (FONT_LARGE(SPAN_NOTICE(X)))
Expand Down

0 comments on commit 6661ea2

Please sign in to comment.