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.
19 lines
600 B
Plaintext
19 lines
600 B
Plaintext
package main
|
|
|
|
import sdl "vendor:sdl2"
|
|
|
|
// Colours
|
|
DEFAULT_BACKGROUND_COLOUR :: sdl.Color{26, 26, 26, 255}
|
|
DEFAULT_TEXT_COLOUR :: sdl.Color{220, 220, 220, 255}
|
|
DEFAULT_LINE_NUMBERS_COLOUR :: sdl.Color{150, 150, 150, 255}
|
|
DEFAULT_LINE_NUMBER_BG_COLOUR :: sdl.Color{40, 40, 40, 255}
|
|
DEFAULT_ACTIVE_TAB_COLOUR :: sdl.Color{60, 60, 60, 255}
|
|
DEFAULT_INACTIVE_TAB_COLOUR :: sdl.Color{45, 45, 45, 255}
|
|
DEFAULT_TAB_BORDER_COLOUR :: sdl.Color{80, 80, 80, 255}
|
|
DEFAULT_CURSOR_COLOUR :: sdl.Color{255, 255, 255, 255}
|
|
|
|
// FONT
|
|
DEFAULT_FONT :: "/usr/share/fonts/TTF/FiraCode-Regular.ttf"
|
|
DEFAULT_FONT_SIZE :: 11
|
|
|