Giter Site home page Giter Site logo

pietervisser / sketch-color-vars Goto Github PK

View Code? Open in Web Editor NEW

This project forked from philsinatra/sketch-color-vars

0.0 2.0 0.0 27 KB

A Sketch plugin that will export the fill color of selected layers to SCSS, LESS and CSS files.

License: MIT License

JavaScript 100.00%

sketch-color-vars's Introduction

GitHub tag license

Sketch Color Variables

A Sketch plugin that will export the fill color of selected layers to SCSS, LESS and CSS files.

Installation

Option 1

  1. Download the plugin.
  2. Double click "Color-Vars.sketchplugin" to install it.

Option 2

As of Sketch version 45, managing plugins can be done directly in the app. Read more from the official Sketch app blog. You can search for Sketch Color Vars from the plugin manager.

Option 3

Use Sketch Toolbox

Sketch Toolbox window showing Sketch Color Vars plugin

How it works

  1. Name the layers your preferred variable names.
  2. Select the layers containing the colors you want exported.
  3. Run the plugin via the Plugins menu, or via the keyboard shortcut shift + cmd + ,

You will be prompted where to save the variable files:

  • _colors.scss
  • _colors.less
  • _colors.styl
  • _colors.css

Limitations

  1. Only solid fills will be exported, not gradients.
  2. Only the first solid fill will be exported (in cases where multiple fills are applied to a single shape/element).

Example

// _color.scss
$red-D0011B: rgba(82%,0%,11%,1.00);
$green-417505: rgba(25%,46%,2%,1.00);
$blue-4990E2: rgba(29%,56%,89%,1.00);
// _color.less
@red-D0011B: rgba(82%,0%,11%,1.00);
@green-417505: rgba(25%,46%,2%,1.00);
@blue-4990E2: rgba(29%,56%,89%,1.00);
// _color.styl
red-D0011B = rgba(82%,0%,11%,1.00);
green-417505 = rgba(25%,46%,2%,1.00);
blue-4990E2 = rgba(29%,56%,89%,1.00);
/* _color.css */
:root {
  --red-D0011B: rgba(82%,0%,11%,1.00);
  --green-417505: rgba(25%,46%,2%,1.00);
  --blue-4990E2: rgba(29%,56%,89%,1.00);
}

What's next?

  • Add select options dialog for user to spec which file type(s) should be exported.
  • Add option for color value type (hex, rgb, rgba).

Feedback

Feedback and pull requests are welcome :)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.