menu.lua 431 B

12345678910111213141516
  1. -- Luanti
  2. -- SPDX-License-Identifier: LGPL-2.1-or-later
  3. -- These colors are used by the main menu and the settings menu
  4. mt_color_grey = "#AAAAAA"
  5. mt_color_blue = "#6389FF"
  6. mt_color_lightblue = "#99CCFF"
  7. mt_color_green = "#72FF63"
  8. mt_color_dark_green = "#25C191"
  9. mt_color_orange = "#FF8800"
  10. mt_color_red = "#FF3300"
  11. function core.are_keycodes_equal(k1, k2)
  12. return core.normalize_keycode(k1) == core.normalize_keycode(k2)
  13. end