blendMode.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": "number",
  4. "oneOf": [
  5. {
  6. "standsFor": "normal",
  7. "const": 0
  8. },
  9. {
  10. "standsFor": "multiply",
  11. "const": 1
  12. },
  13. {
  14. "standsFor": "screen",
  15. "const": 2
  16. },
  17. {
  18. "standsFor": "overlay",
  19. "const": 3
  20. },
  21. {
  22. "standsFor": "darken",
  23. "const": 4
  24. },
  25. {
  26. "standsFor": "lighten",
  27. "const": 5
  28. },
  29. {
  30. "standsFor": "colorDodge",
  31. "const": 6
  32. },
  33. {
  34. "standsFor": "colorBurn",
  35. "const": 7
  36. },
  37. {
  38. "standsFor": "hardLight",
  39. "const": 8
  40. },
  41. {
  42. "standsFor": "softLight",
  43. "const": 9
  44. },
  45. {
  46. "standsFor": "difference",
  47. "const": 10
  48. },
  49. {
  50. "standsFor": "exclusion",
  51. "const": 11
  52. },
  53. {
  54. "standsFor": "hue",
  55. "const": 12
  56. },
  57. {
  58. "standsFor": "saturation",
  59. "const": 13
  60. },
  61. {
  62. "standsFor": "color",
  63. "const": 14
  64. },
  65. {
  66. "standsFor": "luminosity",
  67. "const": 15
  68. }
  69. ],
  70. "default": 0
  71. }