diff --git a/Prism.sketchplugin/Contents/Sketch/build/Palette.js b/Prism.sketchplugin/Contents/Sketch/build/Palette.js index 23d0818..4f3715e 100644 --- a/Prism.sketchplugin/Contents/Sketch/build/Palette.js +++ b/Prism.sketchplugin/Contents/Sketch/build/Palette.js @@ -32,7 +32,7 @@ Palette = (function(superClass) { } } if (this.context.document) { - this.colors = this.context.document.documentData().assets().primitiveColors().array(); + this.colors = this.context.document.documentData().assets().colors(); } } diff --git a/Prism.sketchplugin/Contents/Sketch/manifest.json b/Prism.sketchplugin/Contents/Sketch/manifest.json index 3c78f50..7455a91 100644 --- a/Prism.sketchplugin/Contents/Sketch/manifest.json +++ b/Prism.sketchplugin/Contents/Sketch/manifest.json @@ -1,8 +1,8 @@ { "name": "Prism", - "description": "Creates a beautiful artboard color palette with all your 'Document Colors' with their respective color label in a variety of formats.", + "description": "Creates a beautiful artboard with all the colors in your 'Document Colors' with its respective color label in a variety of formats.", "author": "Lalo Mrtnz & Adrián Rubio", - "homepage": "https://github.com/LaloMrtnz/Prism", + "homepage": "https://github.com/LaloMrtnz/ShareableColorPalette", "version": "1.0", "identifier": "com.ment.sketch.prism", "compatibleVersion": "3.8", diff --git a/Prism.sketchplugin/Contents/Sketch/src/Palette.coffee b/Prism.sketchplugin/Contents/Sketch/src/Palette.coffee index 2b907bb..c0f414e 100644 --- a/Prism.sketchplugin/Contents/Sketch/src/Palette.coffee +++ b/Prism.sketchplugin/Contents/Sketch/src/Palette.coffee @@ -20,7 +20,7 @@ class Palette extends Base @artboard = layer if @context.document - @colors = @context.document.documentData().assets().primitiveColors().array() + @colors = @context.document.documentData().assets().colors() regenerate: -> array = @getColorsDictionaries().map (colorDictionary) ->