mirror of
https://github.com/TimeCrafters/timecrafters_configuration_tool_desktop.git
synced 2025-12-15 21:32:35 +00:00
31 lines
752 B
Ruby
31 lines
752 B
Ruby
module TAC
|
|
class PracticeGameClock
|
|
THEME = {
|
|
TextBlock: {
|
|
font: "Canterell",
|
|
color: Gosu::Color.new(0xee_ffffff)
|
|
},
|
|
Button: {
|
|
image_width: 40,
|
|
text_size: 40,
|
|
background: Palette::TIMECRAFTERS_PRIMARY,
|
|
border_thickness: 1,
|
|
border_color: Gosu::Color.new(0xff_111111),
|
|
hover: {
|
|
background: Palette::TIMECRAFTERS_SECONDARY,
|
|
},
|
|
active: {
|
|
background: Palette::TIMECRAFTERS_TERTIARY,
|
|
}
|
|
},
|
|
EditLine: {
|
|
caret_color: Gosu::Color.new(0xff_88ef90),
|
|
},
|
|
ToggleButton: {
|
|
width: 18,
|
|
checkmark_image: "#{File.expand_path("..", __dir__)}/media/icons/checkmark.png",
|
|
}
|
|
}
|
|
end
|
|
end
|