JSPM

jss-color-rebeccapurple

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q31500F
  • License MIT

JSS plugin to transform the W3C CSS rebeccapurple color to rgb.

Package Exports

  • jss-color-rebeccapurple

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jss-color-rebeccapurple) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

jss-color-rebeccapurple

JSS plugin to transform the W3C CSS rebeccapurple color to rgb.

JSS logo Build Status js-standard-style

Usage

var jss = require('jss')
var rebeccapurple = require('jss-color-rebeccapurple')

jss.use(rebeccapurple())

var sheet = jss.createStyleSheet({
  'test': {
    color: 'rebeccapurple'
  }
})

console.log(sheet.toString())
.test--jss-0-0 {
  color: rgb(102, 51, 153)
}

License

MIT