fresh.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. define(function(require, exports, module) {
  2. var kity = require('../core/kity');
  3. var theme = require('../core/theme');
  4. function hsl(h, s, l) {
  5. return kity.Color.createHSL(h, s, l);
  6. }
  7. function generate(h, compat) {
  8. return {
  9. 'background': '#fbfbfb',
  10. 'root-color': 'white',
  11. 'root-background': hsl(h, 37, 60),
  12. 'root-stroke': hsl(h, 37, 60),
  13. 'root-font-size': 16,
  14. 'root-padding': compat ? [6, 12] : [12, 24],
  15. 'root-margin': compat ? 10 : [30, 100],
  16. 'root-radius': 5,
  17. 'root-space': 10,
  18. 'main-color': 'black',
  19. 'main-background': hsl(h, 33, 95),
  20. 'main-stroke': hsl(h, 37, 60),
  21. 'main-stroke-width': 1,
  22. 'main-font-size': 14,
  23. 'main-padding': [6, 20],
  24. 'main-margin': compat ? 8 : 20,
  25. 'main-radius': 3,
  26. 'main-space': 5,
  27. 'sub-color': 'black',
  28. 'sub-background': 'transparent',
  29. 'sub-stroke': 'none',
  30. 'sub-font-size': 12,
  31. 'sub-padding': compat ? [3, 5] : [5, 10],
  32. 'sub-margin': compat ? [4, 8] : [15, 20],
  33. 'sub-radius': 5,
  34. 'sub-space': 5,
  35. 'connect-color': hsl(h, 37, 60),
  36. 'connect-width': 1,
  37. 'connect-radius': 5,
  38. 'selected-stroke': hsl(h, 26, 30),
  39. 'selected-stroke-width': '3',
  40. 'blur-selected-stroke': hsl(h, 10, 60),
  41. 'marquee-background': hsl(h, 100, 80).set('a', 0.1),
  42. 'marquee-stroke': hsl(h, 37, 60),
  43. 'drop-hint-color': hsl(h, 26, 35),
  44. 'drop-hint-width': 5,
  45. 'order-hint-area-color': hsl(h, 100, 30).set('a', 0.5),
  46. 'order-hint-path-color': hsl(h, 100, 25),
  47. 'order-hint-path-width': 1,
  48. 'text-selection-color': hsl(h, 100, 20),
  49. 'line-height':1.5
  50. };
  51. }
  52. var plans = {
  53. red: 0,
  54. soil: 25,
  55. green: 122,
  56. blue: 204,
  57. purple: 246,
  58. pink: 334
  59. };
  60. var name;
  61. for (name in plans) {
  62. theme.register('fresh-' + name, generate(plans[name]));
  63. theme.register('fresh-' + name + '-compat', generate(plans[name], true));
  64. }
  65. });