CartoDB/cartodb20

View on GitHub
lib/assets/javascripts/builder/components/form-components/_constants/_style.js

Summary

Maintainability
A
35 mins
Test Coverage
module.exports = {
  Type: {
    SIMPLE: 'simple',
    ANIMATION: 'animation',
    HEATMAP: 'heatmap',
    POLYGON: 'polygon',
    REGIONS: 'regions',
    HEXABINS: 'hexabins',
    SQUARES: 'squares',
    NONE: 'none'
  },
  Blending: {
    SIMPLE: [
      'none',
      'multiply',
      'screen',
      'overlay',
      'darken',
      'lighten',
      'color-dodge',
      'color-burn',
      'xor',
      'src-over'
    ],
    ANIMATION: [
      'lighter',
      'multiply',
      'source-over',
      'xor'
    ]
  }
};