mirror of
https://github.com/TimeCrafters/timecrafters_configuration_tool_desktop.git
synced 2025-12-15 21:32:35 +00:00
22 lines
675 B
Ruby
22 lines
675 B
Ruby
module TAC
|
|
THEME = {
|
|
Label: {
|
|
font: "#{TAC::ROOT_PATH}/media/fonts/DejaVuSansCondensed.ttf",
|
|
text_size: 28
|
|
},
|
|
Button: {
|
|
background: TAC::Palette::TIMECRAFTERS_PRIMARY,
|
|
border_thickness: 1,
|
|
border_color: Gosu::Color.new(0xff_111111),
|
|
hover: {
|
|
background: TAC::Palette::TIMECRAFTERS_SECONDARY,
|
|
},
|
|
active: {
|
|
background: TAC::Palette::TIMECRAFTERS_TERTIARY
|
|
}
|
|
},
|
|
EditLine: {
|
|
caret_color: Gosu::Color.new(0xff_434343)
|
|
}
|
|
}
|
|
end |