Rebuilds CSS colour variables file

This commit is contained in:
Dan Leech 2017-02-26 12:34:14 +00:00
parent a131596b3b
commit 7cc52c57fc
2 changed files with 290 additions and 288 deletions

View File

@ -1,4 +1,5 @@
/* Brand colours from simpleicons.org */ /* Brand colours from simpleicons.org */
:root { :root {
--color-brand-500px: #0099E5; --color-brand-500px: #0099E5;
--color-brand-acm: #0085CA; --color-brand-acm: #0085CA;
@ -275,6 +276,7 @@
--color-brand-xbox: #107C10; --color-brand-xbox: #107C10;
--color-brand-xero: #13B5EA; --color-brand-xero: #13B5EA;
--color-brand-xing: #005A5F; --color-brand-xing: #005A5F;
--color-brand-ycombinator: #F0652F;
--color-brand-yahoo: #440099; --color-brand-yahoo: #440099;
--color-brand-yammer: #0072C6; --color-brand-yammer: #0072C6;
--color-brand-yelp: #C41200; --color-brand-yelp: #C41200;

View File

@ -180,5 +180,5 @@ fs.writeFile("../colour-variables.css", css, function(err) {
if(err) { if(err) {
return console.log(err); return console.log(err);
} }
console.log(" - brand-colours.css build successfully."); console.log(" - brand-colours.css built successfully.");
}); });