Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@davidcraig
Created March 16, 2019 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidcraig/19f01cb7d3293f0ba4acbe958e761d83 to your computer and use it in GitHub Desktop.
Save davidcraig/19f01cb7d3293f0ba4acbe958e761d83 to your computer and use it in GitHub Desktop.
Flat UI Colours - CSS Variables and Sass Variables
/* Flat UI Colours: https://flatuicolors.com/palette/defo */
/* CSS Variables */
:root {
/* Greens */
--flat-ui-turquoise: #1abc9c;
--flat-ui-grean-sea: #16a085;
--flat-ui-emerald: #2ecc71;
--flat-ui-nephritis: #27ae60;
/* Blues */
--flat-ui-peter-river: #3498db;
--flat-ui-belize-hole: #2980b9;
--flat-ui-wet-asphalt: #34495e;
--flat-ui-midnight-blue: #2c3e50;
/* Yellows / Oranges */
--flat-ui-sunflower: #f1c40f;
--flat-ui-orange: #f39c12;
--flat-ui-carrot: #e67e22;
--flat-ui-pumpkin: #d35400;
/* Reds */
--flat-ui-alizarin: #e74c3c;
--flat-ui-pomegranate: #c0392b;
/* Greys */
--flat-ui-cloud: #ecf0f1;
--flat-ui-silver: #bdc3c7;
--flat-ui-concrete: #95a5a6;
--flat-ui-asbestos: #7f8c8d;
/* Other */
--flat-ui-amethyst: #9b59b6;
--flat-ui-wisteria: #8e44ad;
}
/* Flat UI Colours: https://flatuicolors.com/palette/defo */
/* SASS Variables */
/* Greens */
$flat-ui-turquoise: #1abc9c;
$flat-ui-grean-sea: #16a085;
$flat-ui-emerald: #2ecc71;
$flat-ui-nephritis: #27ae60;
/* Blues */
$flat-ui-peter-river: #3498db;
$flat-ui-belize-hole: #2980b9;
$flat-ui-wet-asphalt: #34495e;
$flat-ui-midnight-blue: #2c3e50;
/* Yellows / Oranges */
$flat-ui-sunflower: #f1c40f;
$flat-ui-orange: #f39c12;
$flat-ui-carrot: #e67e22;
$flat-ui-pumpkin: #d35400;
/* Reds */
$flat-ui-alizarin: #e74c3c;
$flat-ui-pomegranate: #c0392b;
/* Greys */
$flat-ui-cloud: #ecf0f1;
$flat-ui-silver: #bdc3c7;
$flat-ui-concrete: #95a5a6;
$flat-ui-asbestos: #7f8c8d;
/* Other */
$flat-ui-amethyst: #9b59b6;
$flat-ui-wisteria: #8e44ad;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment