init.lua 937 B

12345678910111213141516171819202122232425262728293031323334
  1. colors = {
  2. MainBackground = "#0E142E",
  3. MainForeground = "#dddddd",
  4. LineNumberBackground = "#090603",
  5. LineNumberForeground = "#dddddd",
  6. CursorColor = "#777777",
  7. CursorColorWrite = "#dddddd",
  8. PaletteBarBackground = "#3b3b3b",
  9. PaletteBarForeground = "#dddddd",
  10. PaletteInputBackground = "#090603",
  11. PaletteInputForeground = "#dddddd",
  12. InfoMsgBackground = "#090603",
  13. InfoMsgForeground = "#dddddd",
  14. WarnMsgBackground = "#090603",
  15. WarnMsgForeground = "#efc541",
  16. ErrorMsgBackground = "#090603",
  17. ErrorMsgForeground = "#ff5e56",
  18. WorkspaceBackground = "#3b3b3b",
  19. WorkspaceForeground = "#b9b9b9",
  20. WorkspaceBackgroundActive = "#dddddd",
  21. WorkspaceForegroundActive = "#3b3b3b",
  22. TabBackground = "#3b3b3b",
  23. TabForeground = "#b9b9b9",
  24. TabBackgroundActive = "#3b3b3b",
  25. TabForegroundActive = "#dddddd",
  26. }
  27. ms.config.set("properties", {
  28. GutterWidth = 4,
  29. TabSpaces = false,
  30. })
  31. ms.config.set("colors", colors)
  32. -- ms.config.set()