Skip to content

Instantly share code, notes, and snippets.

@max
Created June 4, 2013 18:54
Show Gist options
  • Save max/5708466 to your computer and use it in GitHub Desktop.
Save max/5708466 to your computer and use it in GitHub Desktop.
Flat UI Colors as Sass variables
// I needed flatuicolors.com as Sass variables...
// In your console, run:
$('.color').get().map(function(el) { return "$" + el.classList[1] + ": " + el.getAttribute('data-clipboard-text') + ';' }).join('\r\n');
// Output:
// $turquoise: #1abc9c;
// $emerland: #2ecc71;
// $peter-river: #3498db;
// $amethyst: #9b59b6;
// $wet-asphalt: #34495e;
// $green-sea: #16a085;
// $nephritis: #27ae60;
// $belize-hole: #2980b9;
// $wisteria: #8e44ad;
// $midnight-blue: #2c3e50;
// $sun-flower: #f1c40f;
// $carrot: #e67e22;
// $alizarin: #e74c3c;
// $clouds: #ecf0f1;
// $concrete: #95a5a6;
// $orange: #f39c12;
// $pumpkin: #d35400;
// $pomegranate: #c0392b;
// $silver: #bdc3c7;
// $asbestos: #7f8c8d;
@Stichoza
Copy link

Stichoza commented Feb 2, 2015

I created much larger list of flat-ui colors, check it out here: https://github.com/Stichoza/flat-ui-colors

@fbrinker
Copy link

fbrinker commented Dec 8, 2016

thanks :)
@Stichoza - this colors are from the website flatuicolors.com, but you have a nice collection there, too :)

@pieplu
Copy link

pieplu commented Mar 23, 2019

flatuicolors.com now use Vue.js.

To generate this list, we can now run that javascript on console:

Array.prototype.map.call(
  document.querySelectorAll('.color'),
  function(el) {
    return "$" + el.querySelector('span').innerText.replace(new RegExp(' |\'', 'g'),'') + ": " + el.style.background + ';';
  }
).join('\r\n');

@gibatronic
Copy link

Also, to get them as CSS custom properties:

copy(Array.from(document.querySelectorAll('.color')).map((color) => {
    const decToHex = number => parseInt(number, 10).toString(16).toUpperCase().padStart(2, '0')
    const name = color.textContent.trim().toLowerCase().replace(' ', '-')
    const pattern = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/

    const value = color.style.backgroundColor.replace(pattern, (match, p1, p2, p3) => {
        // return `rgb(${p1}, ${p2}, ${p3})`
        return `#${decToHex(p1)}${decToHex(p2)}${decToHex(p3)}`
    })

    return `--color-${name}: ${value};`
}).sort().join('\n'))

Result will be copied to your clipboard.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment