package.json 522 B

1234567891011121314151617181920212223
  1. {
  2. "name": "example-package-theme1",
  3. "version": "1.0.0",
  4. "main": "index.js",
  5. "growiPlugin": {
  6. "schemaVersion": "4",
  7. "types": ["theme"],
  8. "themes": [
  9. {
  10. "name": "theme1",
  11. "manifestKey": "src/styles/style.scss",
  12. "schemeType": "light",
  13. "lightBg": "#ff0000",
  14. "darkBg": "#0000ff",
  15. "lightSidebar": "#ffff00",
  16. "darkSidebar": "#ff8800",
  17. "lightIcon": "#ff0000",
  18. "darkIcon": "#000000",
  19. "createBtn": "#00ff00"
  20. }
  21. ]
  22. }
  23. }