uisettings.cpp 497 B

1234567891011121314151617181920
  1. // Copyright 2016 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "yuzu/uisettings.h"
  5. namespace UISettings {
  6. const Themes themes{{
  7. {"Light", "default"},
  8. {"Light Colorful", "colorful"},
  9. {"Dark", "qdarkstyle"},
  10. {"Dark Colorful", "colorful_dark"},
  11. {"Midnight Blue", "qdarkstyle_midnight_blue"},
  12. {"Midnight Blue Colorful", "colorful_midnight_blue"},
  13. }};
  14. Values values = {};
  15. } // namespace UISettings