Skip to content

Commit

Permalink
start: use a bigger Title font
Browse files Browse the repository at this point in the history
  • Loading branch information
benknoble committed Jan 7, 2024
1 parent 88222fa commit 434d9e5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions gui/start.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@
#:on-player (-> num-players/c any))
(is-a?/c view<%>))]))

(require racket/gui/easy
(require (only-in racket/gui normal-control-font)
racket/gui/easy
racket/gui/easy/contract
frosthaven-manager/defns)
frosthaven-manager/defns
frosthaven-manager/gui/font)

(define (start-view @level @num-players #:on-level [on-level void] #:on-player [on-player void])
(vpanel
(spacer)
(text "Frosthaven Manager")
(text "Frosthaven Manager"
#:font (copy-font normal-control-font #:size 50))
(spacer)
(group
"Party Information"
Expand Down

0 comments on commit 434d9e5

Please sign in to comment.