├── .gitignore ├── .tool-versions ├── CHANGELOG.md ├── LICENSE.MD ├── README.md ├── app ├── CNAME ├── favicon.ico ├── index.jade ├── scripts │ └── index.js └── stylesheets │ ├── components │ └── tooltips.scss │ └── main.scss ├── bower.json ├── brand-colors.gif ├── brand-colors.png ├── data ├── brandColors.js ├── brandColors.json ├── brandColors.merged.json ├── brandColors.net.json └── index.d.ts ├── dist ├── 0.1.0 │ ├── css │ │ ├── brand-colors.0.1.0.css │ │ └── brand-colors.0.1.0.min.css │ ├── less │ │ └── brand-colors.0.1.0.less │ ├── sass │ │ └── brand-colors.0.1.0.sass │ └── scss │ │ └── brand-colors.0.1.0.scss ├── 0.2.0 │ ├── css │ │ ├── brand-colors.0.2.0.css │ │ └── brand-colors.0.2.0.min.css │ ├── less │ │ └── brand-colors.0.2.0.less │ ├── sass │ │ └── brand-colors.0.2.0.sass │ └── scss │ │ └── brand-colors.0.2.0.scss ├── 0.3.0 │ ├── css │ │ ├── brand-colors.0.3.0.css │ │ └── brand-colors.0.3.0.min.css │ ├── less │ │ └── brand-colors.0.3.0.less │ ├── sass │ │ └── brand-colors.0.3.0.sass │ ├── scss │ │ └── brand-colors.0.3.0.scss │ └── stylus │ │ └── brand-colors.0.3.0.styl ├── 0.5.0 │ ├── css │ │ ├── brand-colors.0.5.0.css │ │ └── brand-colors.0.5.0.min.css │ ├── less │ │ └── brand-colors.0.5.0.less │ ├── sass │ │ └── brand-colors.0.5.0.sass │ ├── scss │ │ └── brand-colors.0.5.0.scss │ └── stylus │ │ └── brand-colors.0.5.0.styl ├── 0.5.5 │ ├── css │ │ ├── brand-colors.0.5.5.css │ │ └── brand-colors.0.5.5.min.css │ ├── less │ │ └── brand-colors.0.5.5.less │ ├── sass │ │ └── brand-colors.0.5.5.sass │ ├── scss │ │ └── brand-colors.0.5.5.scss │ └── stylus │ │ └── brand-colors.0.5.5.styl ├── 0.6.0 │ ├── css │ │ ├── brand-colors.0.6.0.css │ │ └── brand-colors.0.6.0.min.css │ ├── less │ │ └── brand-colors.0.6.0.less │ ├── sass │ │ └── brand-colors.0.6.0.sass │ ├── scss │ │ └── brand-colors.0.6.0.scss │ └── stylus │ │ └── brand-colors.0.6.0.styl ├── 1.0.0 │ ├── css │ │ ├── brand-colors.1.0.0.css │ │ └── brand-colors.1.0.0.min.css │ ├── less │ │ └── brand-colors.1.0.0.less │ ├── sass │ │ └── brand-colors.1.0.0.sass │ ├── scss │ │ └── brand-colors.1.0.0.scss │ └── stylus │ │ └── brand-colors.1.0.0.styl ├── 1.0.1 │ ├── css │ │ ├── brand-colors.1.0.1.css │ │ └── brand-colors.1.0.1.min.css │ ├── less │ │ └── brand-colors.1.0.1.less │ ├── sass │ │ └── brand-colors.1.0.1.sass │ ├── scss │ │ └── brand-colors.1.0.1.scss │ └── stylus │ │ └── brand-colors.1.0.1.styl ├── 1.0.2 │ ├── css │ │ ├── brand-colors.1.0.2.css │ │ └── brand-colors.1.0.2.min.css │ ├── less │ │ └── brand-colors.1.0.2.less │ ├── sass │ │ └── brand-colors.1.0.2.sass │ ├── scss │ │ └── brand-colors.1.0.2.scss │ └── stylus │ │ └── brand-colors.1.0.2.styl ├── 1.1.0 │ ├── css │ │ ├── brand-colors.1.1.0.css │ │ └── brand-colors.1.1.0.min.css │ ├── less │ │ └── brand-colors.1.1.0.less │ ├── sass │ │ └── brand-colors.1.1.0.sass │ ├── scss │ │ └── brand-colors.1.1.0.scss │ └── stylus │ │ └── brand-colors.1.1.0.styl ├── 1.1.1 │ ├── css │ │ ├── brand-colors.1.1.1.css │ │ └── brand-colors.1.1.1.min.css │ ├── less │ │ └── brand-colors.1.1.1.less │ ├── sass │ │ └── brand-colors.1.1.1.sass │ ├── scss │ │ └── brand-colors.1.1.1.scss │ └── stylus │ │ └── brand-colors.1.1.1.styl ├── 1.1.2 │ ├── css │ │ ├── brand-colors.1.1.2.css │ │ └── brand-colors.1.1.2.min.css │ ├── less │ │ └── brand-colors.1.1.2.less │ ├── sass │ │ └── brand-colors.1.1.2.sass │ ├── scss │ │ └── brand-colors.1.1.2.scss │ └── stylus │ │ └── brand-colors.1.1.2.styl ├── 1.2.0 │ ├── css │ │ ├── brand-colors.1.2.0.css │ │ └── brand-colors.1.2.0.min.css │ ├── less │ │ └── brand-colors.1.2.0.less │ ├── sass │ │ └── brand-colors.1.2.0.sass │ ├── scss │ │ └── brand-colors.1.2.0.scss │ └── stylus │ │ └── brand-colors.1.2.0.styl ├── 1.2.1 │ ├── css │ │ ├── brand-colors.1.2.1.css │ │ └── brand-colors.1.2.1.min.css │ ├── less │ │ └── brand-colors.1.2.1.less │ ├── sass │ │ └── brand-colors.1.2.1.sass │ ├── scss │ │ └── brand-colors.1.2.1.scss │ └── stylus │ │ └── brand-colors.1.2.1.styl ├── 1.2.2 │ ├── css │ │ ├── brand-colors.1.2.2.css │ │ └── brand-colors.1.2.2.min.css │ ├── less │ │ └── brand-colors.1.2.2.less │ ├── sass │ │ └── brand-colors.1.2.2.sass │ ├── scss │ │ └── brand-colors.1.2.2.scss │ └── stylus │ │ └── brand-colors.1.2.2.styl ├── 2.0.0 │ ├── css │ │ ├── brand-colors.2.0.0.css │ │ └── brand-colors.2.0.0.min.css │ ├── less │ │ └── brand-colors.2.0.0.less │ ├── sass │ │ └── brand-colors.2.0.0.sass │ ├── scss │ │ └── brand-colors.2.0.0.scss │ └── stylus │ │ └── brand-colors.2.0.0.styl ├── 2.0.1 │ ├── css │ │ ├── brand-colors.2.0.1.css │ │ └── brand-colors.2.0.1.min.css │ ├── less │ │ └── brand-colors.2.0.1.less │ ├── sass │ │ └── brand-colors.2.0.1.sass │ ├── scss │ │ └── brand-colors.2.0.1.scss │ └── stylus │ │ └── brand-colors.2.0.1.styl ├── 2.0.2 │ ├── css │ │ ├── brand-colors.2.0.2.css │ │ └── brand-colors.2.0.2.min.css │ ├── less │ │ └── brand-colors.2.0.2.less │ ├── sass │ │ └── brand-colors.2.0.2.sass │ ├── scss │ │ └── brand-colors.2.0.2.scss │ └── stylus │ │ └── brand-colors.2.0.2.styl ├── 2.1.0 │ ├── css │ │ ├── brand-colors.2.1.0.css │ │ └── brand-colors.2.1.0.min.css │ ├── less │ │ └── brand-colors.2.1.0.less │ ├── sass │ │ └── brand-colors.2.1.0.sass │ ├── scss │ │ └── brand-colors.2.1.0.scss │ └── stylus │ │ └── brand-colors.2.1.0.styl ├── 2.1.1 │ ├── css │ │ ├── brand-colors.2.1.1.css │ │ └── brand-colors.2.1.1.min.css │ ├── less │ │ └── brand-colors.2.1.1.less │ ├── sass │ │ └── brand-colors.2.1.1.sass │ ├── scss │ │ └── brand-colors.2.1.1.scss │ └── stylus │ │ └── brand-colors.2.1.1.styl └── latest │ ├── css │ ├── brand-colors.latest.css │ └── brand-colors.latest.min.css │ ├── less │ └── brand-colors.latest.less │ ├── sass │ └── brand-colors.latest.sass │ ├── scss │ └── brand-colors.latest.scss │ └── stylus │ └── brand-colors.latest.styl ├── gulpfile.js ├── gulptasks ├── dev.js └── dist.js ├── hook.io.js ├── package-lock.json ├── package.json ├── scripts └── fetchBrandColorsNet.js ├── templates ├── brand-colors.css ├── brand-colors.less ├── brand-colors.sass ├── brand-colors.scss └── brand-colors.styl └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .tmp/ 2 | .publish/ 3 | node_modules/ 4 | npm-debug.log -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 8.16.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | This project adheres to [Semantic Versioning](http://semver.org/). 3 | 4 | ## 2.0.1 5 | * Fix issues with 2.0.0 release where scss lacked `;` 6 | -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 Piérre Reimertz 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](brand-colors.png) 2 | 3 | brand-colors is a collection of colors works available in sass, less, stylus and css 4 | 5 | ## Installation 6 | 7 | ``` 8 | npm install brand-colors 9 | bower install brand-colors 10 | ``` 11 | 12 | ## Usage 13 | 14 | #### scss 15 | ```scss 16 | @import 'bower_components/brand-colors/dist/latest/scss/brand-colors.latest.scss' 17 | 18 | .a-div { 19 | color: $bc-spotify; 20 | } 21 | ``` 22 | #### less 23 | ```css 24 | @import 'bower_components/brand-colors/dist/latest/less/brand-colors.latest.less' 25 | 26 | .a-div { 27 | color: @bc-spotify; 28 | } 29 | ``` 30 | ##### in webpack 31 | * use relative path to the `node_modules`, for example: 32 | 33 | ```js 34 | app 35 | |_node_modules 36 | |_src 37 | |_css 38 | |_app.less 39 | ``` 40 | in app.less: 41 | 42 | ```less 43 | @import '../../node_modules/brand-colors/dist/latest/less/brand-colors.latest.less'; 44 | ``` 45 | 46 | * use webpack's resolve mechanism 47 | 48 | ```less 49 | @import '~brand-colors/dist/latest/less/brand-colors.latest.less'; 50 | ``` 51 | 52 | #### sass 53 | ```sass 54 | @import 'bower_components/brand-colors/dist/latest/scss/brand-colors.latest.sass' 55 | 56 | .a-div 57 | color: $bc-spotify 58 | ``` 59 | #### stylus 60 | ```css 61 | @import 'bower_components/brand-colors/dist/latest/stylus/brand-colors.latest.styl' 62 | 63 | .a-div { 64 | color: $bc-spotify; 65 | } 66 | ``` 67 | #### css 68 | 69 | ```html 70 | ` 71 | 72 | This text is spotify-green 73 |
This div has a spotify-green background
74 | ``` 75 | #### postcss 76 | 77 | Use [postcss-brand-color](https://github.com/postcss/postcss-brand-colors) plugin. Add it to PostCSS: 78 | 79 | ```js 80 | postcss([ require('postcss-brand-colors') ]) 81 | ``` 82 | 83 | and use `*-color` names: 84 | 85 | ```css 86 | .a-div { 87 | color: spotify-color; 88 | } 89 | ``` 90 | 91 | ### Run brand-colors.com locally 92 | If you want to work on the static homepage, just run the following commands 93 | and you will get a live-reloading server listening for changes in /app 94 | and brandColors.js 95 | ```bash 96 | npm install 97 | gulp dev 98 | ``` 99 | ### Brands 100 | [Full list of colors](https://github.com/reimertz/brand-colors/blob/master/data/brandColors.js#L8) 101 | A lot fo the colors comes from brandcolors.net, so a huge shout out to @galengidman. 102 | 103 | --- 104 | > [reimertz.co](http://reimertz.co)  ·  105 | > GitHub [@reimertz](https://github.com/reimertz)  ·  106 | > Twitter [@reimertz](https://twitter.com/reimertz) 107 | -------------------------------------------------------------------------------- /app/CNAME: -------------------------------------------------------------------------------- 1 | brand-colors.com -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimertz/brand-colors/77ebfe22c0762b449f56ca17e2678e746043c8ff/app/favicon.ico -------------------------------------------------------------------------------- /app/index.jade: -------------------------------------------------------------------------------- 1 | doctype html 2 | html 3 | head 4 | title brand-colors 5 | meta(name="description" content="A +#{ Math.floor(companies.length/100)*100} color collection available in sass, less, stylus and css") 6 | meta(name="author" content="Pierre Reimertz") 7 | meta(name="keywords" content="brand,colors,brand colors, brand-color, brand colors, color") 8 | meta(name='viewport', content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0') 9 | meta(name='twitter:card', content='summary_large_image') 10 | meta(name='twitter:creator', content='@reimertz') 11 | meta(name='twitter:site', content='@reimertz') 12 | meta(name='twitter:title', content='brand-colors') 13 | meta(name='twitter:description', content='A +#{ Math.floor(companies.length/100)*100} color collection available in sass, less, stylus and css. Made by @reimertz') 14 | meta(name='twitter:image', content='https://cdn.rawgit.com/reimertz/brand-colors/master/brand-colors.png') 15 | link(href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,600', rel='stylesheet', type='text/css') 16 | link(rel='stylesheet', type='text/css', href='dist/latest/css/brand-colors.latest.css') 17 | link(rel='stylesheet', type='text/css', href='styles.css') 18 | body.no-interaction 19 | nav 20 | header 21 | h1 22 | span#brand-name brand-colors 23 | p#hex(contenteditable='') 24 | | A #{ Math.floor(companies.length/100)*100}+ color collection available in sass, less, stylus and css 25 | span#cpy 26 | section.intro 27 | p 28 | a(href='//github.com/reimertz/brand-colors') documentation 29 | span.square ■ 30 | a(href='//twitter.com/reimertz') @reimertz 31 | p 32 | - var s = 'brand-colors - a ' + Math.floor(companies.length/100)*100 + '+ color collection available in sass, less, stylus and css. by @reimertz'; 33 | - var encodedString = encodeURIComponent(s); 34 | 35 | a(class="twitter-share-button" href="https://twitter.com/intent/tweet?text=#{encodedString}") Tweet 36 | iframe(src='https://ghbtns.com/github-btn.html?user=reimertz&repo=brand-colors&type=star&count=true', frameborder='0', scrolling='0', width='90px', height='20px') 37 | iframe(src='https://ghbtns.com/github-btn.html?user=reimertz&repo=brand-colors&type=fork&count=true', frameborder='0', scrolling='0', width='90px', height='20px') 38 | main 39 | section 40 | input#search(placeholder='search') 41 | ol#companies 42 | each company in companies 43 | li(class="bc-#{company.name}-bg")=company.name 44 | 45 | script(src='https://cdn.jsdelivr.net/clipboard.js/1.5.5/clipboard.min.js') 46 | script(src='index.js') 47 | script. 48 | !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs'); 49 | script. 50 | (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ 51 | (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), 52 | m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) 53 | })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); 54 | 55 | ga('create', 'UA-71960919-1', 'auto'); 56 | ga('send', 'pageview'); -------------------------------------------------------------------------------- /app/scripts/index.js: -------------------------------------------------------------------------------- 1 | var companyContainer = document.getElementById('companies'), 2 | text = document.getElementById('brand-name'), 3 | initialText = text.innerHTML, 4 | hex = document.getElementById('hex'), 5 | initialHex = hex.innerHTML, 6 | search = document.getElementById('search'), 7 | body = document.body, 8 | 9 | isSafari = navigator.vendor && navigator.vendor.indexOf('Apple') > -1 10 | && navigator.userAgent && !navigator.userAgent.match('CriOS'), 11 | 12 | isIOS = navigator.userAgent && navigator.userAgent.indexOf('iPhone') > -1 13 | ||navigator.userAgent && navigator.userAgent.indexOf('iPad') > -1, 14 | 15 | sheet = (function() { 16 | var style = document.createElement("style"); 17 | 18 | style.appendChild(document.createTextNode('')); 19 | document.head.appendChild(style); 20 | 21 | return style.sheet; 22 | })(); 23 | 24 | 25 | function selectElementContents(el) { //http://stackoverflow.com/a/6150060/3809029 26 | var range, sel; 27 | 28 | range = document.createRange(); 29 | range.selectNodeContents(el); 30 | 31 | sel = window.getSelection(); 32 | sel.removeAllRanges(); 33 | sel.addRange(range); 34 | }; 35 | 36 | 37 | function rgb2hex(rgb) { //http://stackoverflow.com/a/3971432/3809029 38 | rgb = rgb.match(/^rgba?\((\d+),\s*(\d+),\s*(\d+)(?:,\s*(\d+))?\)$/); 39 | 40 | function hex(x) { 41 | return ('0' + parseInt(x).toString(16)).slice(-2); 42 | } 43 | 44 | return '#' + hex(rgb[1]) + hex(rgb[2]) + hex(rgb[3]); 45 | } 46 | 47 | 48 | function getContrastYIQ(hexcolor){ //https://gist.github.com/StevenBlack/960189 49 | var r, g, b, yiq; 50 | 51 | r = parseInt(hexcolor.substr(0,2),16); 52 | g = parseInt(hexcolor.substr(2,2),16); 53 | b = parseInt(hexcolor.substr(4,2),16); 54 | yiq = ((r*299)+(g*587)+(b*114))/1000; 55 | 56 | return (yiq >= 128) ? 'black' : 'white'; 57 | } 58 | 59 | 60 | function getStyle(oElm, strCssRule){ //http://stackoverflow.com/a/4172920/3809029 61 | var strValue = ""; 62 | if(document.defaultView && document.defaultView.getComputedStyle){ 63 | strValue = document.defaultView.getComputedStyle(oElm, '').getPropertyValue(strCssRule); 64 | } 65 | else if(oElm.currentStyle){ 66 | strCssRule = strCssRule.replace(/\-(\w)/g, function (strMatch, p1){ 67 | return p1.toUpperCase(); 68 | }); 69 | strValue = oElm.currentStyle[strCssRule]; 70 | } 71 | return strValue; 72 | } 73 | 74 | function updateState(event) { 75 | var name = event.target.innerHTML, 76 | color, hexColor, textColor; 77 | 78 | if (event.target.tagName !== 'LI') return; 79 | 80 | color = getStyle(event.target, 'background-color'); 81 | hexColor = rgb2hex(color); 82 | textColor = getContrastYIQ(hexColor.substring(1)); 83 | 84 | text.innerHTML = name; 85 | hex.innerHTML = hexColor; 86 | 87 | body.style.color = textColor; 88 | body.style.backgroundColor = color; 89 | }; 90 | 91 | function resetState(){ 92 | text.innerHTML = initialText; 93 | hex.innerHTML = initialHex; 94 | 95 | body.style.color = 'black'; 96 | body.style.backgroundColor = 'rgba(255,255,255,0.9)'; 97 | } 98 | 99 | function setSearchCss(text){ 100 | var search = 'li:not([class*="' + text + '"])'; 101 | 102 | //check whether .rules exists to support older browsers, and fallback to .cssRules as default. 103 | var rulesLength = sheet.rules ? sheet.rules.length : sheet.cssRules.length; 104 | for(var i = 0; i < rulesLength; i++) { 105 | sheet[(sheet.removeRule ? 'removeRule' : 'deleteRule')](0); 106 | } 107 | 108 | if(text.length == 0 ) return; 109 | 110 | //function parameters differ for addRule() and insertRule() 111 | //check for addRule to support older browsers, use insertRule as default 112 | if(sheet.addRule){ 113 | sheet.addRule(search, 'width:0 !important', 0); 114 | } 115 | else { 116 | sheet.insertRule(search + '{width:0 !important}', 0); 117 | } 118 | } 119 | 120 | search.addEventListener('keyup', function(event){ 121 | var text = event.target.value.toLowerCase(); 122 | setSearchCss(text); 123 | }); 124 | 125 | function checkIfSearchQuery(){ 126 | var query = document.location.search.split('?search='); 127 | if(query.length == 2){ 128 | setSearchCss(query[1]); 129 | search.value = query[1]; 130 | } 131 | } 132 | 133 | // Initiate everything; 134 | companyContainer.addEventListener('mouseover', updateState); 135 | companyContainer.addEventListener('mouseout', resetState); 136 | checkIfSearchQuery(); 137 | 138 | //clipboard.js implement event delegation iternally 139 | client = new Clipboard(companyContainer.children, { 140 | text: function(trigger) { 141 | return document.getElementById('hex').innerHTML; 142 | } 143 | }); 144 | 145 | client.on('success', function(event){ 146 | event.trigger.setAttribute('aria-label', event.text + ' copied!'); 147 | event.trigger.classList.add('tooltipped'); 148 | event.trigger.classList.add('tooltipped-n'); 149 | setTimeout(function(){ 150 | event.trigger.classList.add('tooltipped'); 151 | event.trigger.classList.remove('tooltipped-n'); 152 | },3000) 153 | 154 | }) 155 | 156 | client.on('error', function(event){ 157 | if(!isIOS){ 158 | hex.setAttribute('aria-label', 'Press ' + ((isSafari) ? '⌘' : 'CTRL') + '-C to copy'); 159 | hex.classList.add('tooltipped'); 160 | hex.classList.add('tooltipped-s'); 161 | 162 | setTimeout(function(){ 163 | hex.classList.remove('tooltipped'); 164 | hex.classList.remove('tooltipped-s'); 165 | }, 2000) 166 | } 167 | 168 | hex.focus(); 169 | requestAnimationFrame(function() { 170 | selectElementContents(hex); 171 | }); 172 | }) 173 | 174 | -------------------------------------------------------------------------------- /app/stylesheets/components/tooltips.scss: -------------------------------------------------------------------------------- 1 | .tooltipped { 2 | position: relative; 3 | } 4 | 5 | .tooltipped:after { 6 | position: absolute; 7 | z-index: 1000000; 8 | display: none; 9 | padding: 5px 8px; 10 | font: normal normal 15px/1.5 "Open Sans"; 11 | color: #fff; 12 | text-align: center; 13 | text-decoration: none; 14 | text-shadow: none; 15 | text-transform: none; 16 | letter-spacing: normal; 17 | word-wrap: break-word; 18 | white-space: pre; 19 | pointer-events: none; 20 | content: attr(aria-label); 21 | background: rgba(0, 0, 0, 0.8); 22 | border-radius: 3px; 23 | -webkit-font-smoothing: subpixel-antialiased; 24 | } 25 | 26 | .tooltipped:before { 27 | position: absolute; 28 | z-index: 1000001; 29 | display: none; 30 | width: 0; 31 | height: 0; 32 | color: rgba(0, 0, 0, 0.8); 33 | pointer-events: none; 34 | content: ""; 35 | border: 5px solid transparent; 36 | } 37 | 38 | .tooltipped:hover:before, .tooltipped:hover:after, 39 | .tooltipped:active:before, 40 | .tooltipped:active:after, 41 | .tooltipped:focus:before, 42 | .tooltipped:focus:after { 43 | display: inline-block; 44 | text-decoration: none; 45 | } 46 | 47 | .tooltipped-multiline:hover:after, 48 | .tooltipped-multiline:active:after, 49 | .tooltipped-multiline:focus:after { 50 | display: table-cell; 51 | } 52 | 53 | .tooltipped-s:after, 54 | .tooltipped-se:after, 55 | .tooltipped-sw:after { 56 | top: 100%; 57 | right: 50%; 58 | margin-top: 5px; 59 | } 60 | 61 | .tooltipped-s:before, 62 | .tooltipped-se:before, 63 | .tooltipped-sw:before { 64 | top: auto; 65 | right: 50%; 66 | bottom: -5px; 67 | margin-right: -5px; 68 | border-bottom-color: rgba(0, 0, 0, 0.8); 69 | } 70 | 71 | .tooltipped-se:after { 72 | right: auto; 73 | left: 50%; 74 | margin-left: -15px; 75 | } 76 | 77 | .tooltipped-sw:after { 78 | margin-right: -15px; 79 | } 80 | 81 | .tooltipped-n:after, 82 | .tooltipped-ne:after, 83 | .tooltipped-nw:after { 84 | right: 50%; 85 | bottom: 100%; 86 | margin-bottom: 5px; 87 | } 88 | 89 | .tooltipped-n:before, 90 | .tooltipped-ne:before, 91 | .tooltipped-nw:before { 92 | top: -5px; 93 | right: 50%; 94 | bottom: auto; 95 | margin-right: -5px; 96 | border-top-color: rgba(0, 0, 0, 0.8); 97 | } 98 | 99 | .tooltipped-ne:after { 100 | right: auto; 101 | left: 50%; 102 | margin-left: -15px; 103 | } 104 | 105 | .tooltipped-nw:after { 106 | margin-right: -15px; 107 | } 108 | 109 | .tooltipped-s:after, 110 | .tooltipped-n:after { 111 | transform: translateX(50%); 112 | } 113 | 114 | .tooltipped-w:after { 115 | right: 100%; 116 | bottom: 50%; 117 | margin-right: 5px; 118 | transform: translateY(50%); 119 | } 120 | 121 | .tooltipped-w:before { 122 | top: 50%; 123 | bottom: 50%; 124 | left: -5px; 125 | margin-top: -5px; 126 | border-left-color: rgba(0, 0, 0, 0.8); 127 | } 128 | 129 | .tooltipped-e:after { 130 | bottom: 50%; 131 | left: 100%; 132 | margin-left: 5px; 133 | transform: translateY(50%); 134 | } 135 | 136 | .tooltipped-e:before { 137 | top: 50%; 138 | right: -5px; 139 | bottom: 50%; 140 | margin-top: -5px; 141 | border-right-color: rgba(0, 0, 0, 0.8); 142 | } 143 | 144 | .tooltipped-multiline:after { 145 | width: max-content; 146 | max-width: 250px; 147 | word-break: break-word; 148 | word-wrap: normal; 149 | white-space: pre-line; 150 | border-collapse: separate; 151 | } 152 | 153 | .tooltipped-multiline.tooltipped-s:after, .tooltipped-multiline.tooltipped-n:after { 154 | right: auto; 155 | left: 50%; 156 | transform: translateX(-50%); 157 | } 158 | 159 | .tooltipped-multiline.tooltipped-w:after, .tooltipped-multiline.tooltipped-e:after { 160 | right: 100%; 161 | } 162 | 163 | @media screen and (min-width: 0\0) { 164 | .tooltipped-multiline:after { 165 | width: 250px; 166 | } 167 | } 168 | 169 | .tooltipped-sticky:before, .tooltipped-sticky:after { 170 | display: inline-block; 171 | } 172 | 173 | .tooltipped-sticky.tooltipped-multiline:after { 174 | display: table-cell; 175 | } -------------------------------------------------------------------------------- /app/stylesheets/main.scss: -------------------------------------------------------------------------------- 1 | @import 'components/tooltips'; 2 | 3 | body { 4 | background: rgba(255,255,255,0.9); 5 | font-family: 'Open Sans', sans-serif; 6 | margin: 0 auto 50px auto; 7 | text-align: center; 8 | transition: background-color 200ms; 9 | position: relative; 10 | } 11 | 12 | body.copy li[class^="bc-"]:not(.clicked), 13 | body.copy .intro, 14 | body.copy #search { 15 | opacity: 0.1; 16 | pointer-events: none; 17 | } 18 | 19 | a { 20 | color: inherit; 21 | font-weight: 700; 22 | text-decoration: none; 23 | } 24 | 25 | a:hover { 26 | text-decoration: underline; 27 | } 28 | 29 | 30 | body.copy #cpy { 31 | opacity: 1; 32 | } 33 | body.copy #brand-name { 34 | font-size: 50px; 35 | } 36 | 37 | body.copy #hex { 38 | font-size: 20px; 39 | } 40 | 41 | nav { 42 | position: fixed; 43 | top: 0; 44 | width: 100%; 45 | margin: 0 auto; 46 | padding-top: 50px; 47 | z-index: 1; 48 | height: 200px; 49 | background-color: inherit; 50 | z-index: 2; 51 | } 52 | 53 | #brand-name { 54 | transition: 200ms; 55 | font-size: 50px; 56 | font-weight: 400; 57 | margin: 0; 58 | line-height: 25px; 59 | text-align: center; 60 | } 61 | 62 | #hex { 63 | transition: 200ms; 64 | outline: none; 65 | } 66 | 67 | #hex::-moz-selection { /* Code for Firefox */ 68 | color: white; 69 | background: black; 70 | padding: 2px 10px; 71 | } 72 | 73 | #hex::selection { 74 | color: white; 75 | background: black; 76 | padding: 2px 10px; 77 | } 78 | 79 | .intro { 80 | transition: 200ms; 81 | } 82 | 83 | .square { 84 | font-family:initial; 85 | } 86 | 87 | main { 88 | margin-top: 250px; 89 | display: inline-block; 90 | font-size: 0; 91 | position: relative; 92 | width: 810px; 93 | text-align: left; 94 | } 95 | 96 | main > section { 97 | text-align: left; 98 | } 99 | 100 | ::-webkit-input-placeholder { 101 | color: inherit; 102 | } 103 | 104 | input#search { 105 | color: white; 106 | margin: 0; 107 | padding: 0; 108 | height: 35px; 109 | border: none; 110 | background: tomato; 111 | width: 132px; 112 | display: inline-block; 113 | position: absolute; 114 | z-index: 1; 115 | padding-left: 8px; 116 | outline: none; 117 | font-weight: 500; 118 | text-transform: uppercase; 119 | border-radius: 0; 120 | } 121 | input#search:hover, 122 | input#search:focus { 123 | 124 | } 125 | 126 | ol#companies { 127 | position: relative; 128 | display: inline-block; 129 | text-align: left; 130 | padding: 0; 131 | font-size: 0px; 132 | line-height: 0px; 133 | } 134 | ol li:first-child { 135 | margin-left: 140px; 136 | } 137 | 138 | li[class^="bc-"] { 139 | cursor: pointer; 140 | display: inline-block; 141 | font-size: 0px; 142 | height:35px; 143 | margin: 0 0; 144 | padding: 0; 145 | position: relative; 146 | text-align: center; 147 | width: 35px; 148 | transition: width 350ms; 149 | } 150 | 151 | li[class^="bc-"]:hover { 152 | 153 | } 154 | 155 | li[class^="bc-"].selected { 156 | background-color: white; 157 | } 158 | 159 | body:not(.copy) ol#companies:hover:after { 160 | width: 0%; 161 | font-size: 0; 162 | } 163 | 164 | @media (max-width: 850px) { 165 | #brand-name { 166 | font-size: 28px; 167 | } 168 | 169 | body.copy #brand-name { 170 | font-size: 30px; 171 | } 172 | 173 | .text { 174 | padding: 10px; 175 | font-size: 12px; 176 | text-align: center; 177 | } 178 | 179 | #hex { 180 | font-size: 12px; 181 | } 182 | 183 | body.copy #hex { 184 | font-size: 16px; 185 | } 186 | 187 | main { 188 | width: 90%; 189 | text-align: left; 190 | } 191 | 192 | main > section { 193 | text-align: center; 194 | font-size: 0; 195 | line-height: 0; 196 | } 197 | 198 | ol#companies { 199 | width: 315px; 200 | } 201 | } -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "brand-colors", 3 | "version": "1.2.1", 4 | "description": "A Collection with brand colors (CSS, LESS, SCSS, Stylus).", 5 | "homepage": "https://brand-colors.com", 6 | "authors": [ 7 | "Pierre Reimertz " 8 | ], 9 | "homepage": "reimertz.github.io/brand-colors", 10 | "keywords": [ 11 | "brand", 12 | "color", 13 | "brand-color", 14 | "branding" 15 | ], 16 | "main": [ 17 | "dist/latest/css/brand-colors.latest.css", 18 | "dist/latest/less/brand-colors.latest.less", 19 | "dist/latest/sass/brand-colors.latest.sass", 20 | "dist/latest/scss/brand-colors.latest.scss", 21 | "dist/latest/stylus/brand-colors.latest.styl" 22 | ], 23 | "ignore": [ 24 | "node-modules/**", 25 | "CNAME" 26 | ], 27 | "dependencies": {}, 28 | "devDependencies": {} 29 | } 30 | -------------------------------------------------------------------------------- /brand-colors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimertz/brand-colors/77ebfe22c0762b449f56ca17e2678e746043c8ff/brand-colors.gif -------------------------------------------------------------------------------- /brand-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reimertz/brand-colors/77ebfe22c0762b449f56ca17e2678e746043c8ff/brand-colors.png -------------------------------------------------------------------------------- /data/brandColors.js: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors {{ version }} 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | var _brandColors = require('./brandColors.json') 9 | 10 | var _groupedColors = {} 11 | 12 | var brandColors = Object.keys(_brandColors).map(function(key) { 13 | var formatted = key.replace(/-([0-9]+)/g, '') 14 | 15 | if (typeof _groupedColors[formatted] == 'undefined') 16 | _groupedColors[formatted] = [] 17 | _groupedColors[formatted].push(_brandColors[key]) 18 | 19 | return { 20 | name: key, 21 | color: _brandColors[key] 22 | } 23 | }) 24 | 25 | function getAll() { 26 | return brandColors 27 | } 28 | 29 | function getByGroup(brandName) { 30 | if (!brandName) return _groupedColors 31 | else if (typeof brandName == 'object') { 32 | var collection = {} 33 | for (var i = 0; i < brandName.length; i++) { 34 | collection[brandName[i]] = getByGroup(brandName[i]) 35 | } 36 | return collection 37 | } 38 | return _groupedColors[brandName] 39 | } 40 | 41 | function find(name) { 42 | return brandColors.filter(function(brand) { 43 | return brand.name === name 44 | }) 45 | } 46 | 47 | exports._brandColors = _brandColors 48 | exports.getAll = getAll 49 | exports.getByGroup = getByGroup 50 | exports.find = find 51 | -------------------------------------------------------------------------------- /data/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "brand-colors" { 2 | type ColorMap = { [key: string]: string }; 3 | 4 | export const _brandColors: ColorMap; 5 | export function getAll(): ColorMap; 6 | export function getByGroup(brandName: string): ReadonlyArray; 7 | export function find(name: string): string | undefined; 8 | } -------------------------------------------------------------------------------- /dist/0.1.0/css/brand-colors.0.1.0.min.css: -------------------------------------------------------------------------------- 1 | .bc-4ormat{color:#fb0a2a}.bc-4ormat-bg{background-color:#fb0a2a}.bc-500px{color:#00aeef}.bc-500px-bg{background-color:#00aeef}.bc-about-me{color:#00405d}.bc-about-me-bg{background-color:#00405d}.bc-about-me-2{color:#062f3c}.bc-about-me-2-bg{background-color:#062f3c}.bc-about-me-3{color:#2b82ad}.bc-about-me-3-bg{background-color:#2b82ad}.bc-about-me-4{color:#cc7a00}.bc-about-me-4-bg{background-color:#cc7a00}.bc-about-me-5{color:#fc3}.bc-about-me-5-bg{background-color:#fc3}.bc-addvocate{color:#f32}.bc-addvocate-bg{background-color:#f32}.bc-adobe{color:red}.bc-adobe-bg{background-color:red}.bc-adobe-2{color:#fbb034}.bc-adobe-2-bg{background-color:#fbb034}.bc-adobe-3{color:#fd0}.bc-adobe-3-bg{background-color:#fd0}.bc-adobe-4{color:#c1d82f}.bc-adobe-4-bg{background-color:#c1d82f}.bc-adobe-5{color:#00a4e4}.bc-adobe-5-bg{background-color:#00a4e4}.bc-adobe-6{color:#8a7967}.bc-adobe-6-bg{background-color:#8a7967}.bc-adobe-7{color:#6a737b}.bc-adobe-7-bg{background-color:#6a737b}.bc-aim{color:#ffd900}.bc-aim-bg{background-color:#ffd900}.bc-amazon{color:#f90}.bc-amazon-bg{background-color:#f90}.bc-amazon-2{color:#146eb4}.bc-amazon-2-bg{background-color:#146eb4}.bc-android{color:#a4c639}.bc-android-bg{background-color:#a4c639}.bc-angies-list{color:#7fbb00}.bc-angies-list-bg{background-color:#7fbb00}.bc-aol{color:#ff0b00}.bc-aol-bg{background-color:#ff0b00}.bc-aol-2{color:#00c4ff}.bc-aol-2-bg{background-color:#00c4ff}.bc-asana{color:#1f8dd6}.bc-asana-bg{background-color:#1f8dd6}.bc-asana-2{color:#34ad00}.bc-asana-2-bg{background-color:#34ad00}.bc-atlassian{color:#036}.bc-atlassian-bg{background-color:#036}.bc-behance{color:#1769ff}.bc-behance-bg{background-color:#1769ff}.bc-big-cartel{color:#a0ac48}.bc-big-cartel-bg{background-color:#a0ac48}.bc-big-cartel-2{color:#70b29c}.bc-big-cartel-2-bg{background-color:#70b29c}.bc-bitly{color:#ee6123}.bc-bitly-bg{background-color:#ee6123}.bc-bitly-2{color:#61b3de}.bc-bitly-2-bg{background-color:#61b3de}.bc-blogger{color:#f57d00}.bc-blogger-bg{background-color:#f57d00}.bc-boeing{color:#0039a6}.bc-boeing-bg{background-color:#0039a6}.bc-booking-com{color:#003580}.bc-booking-com-bg{background-color:#003580}.bc-carbonmade{color:#613854}.bc-carbonmade-bg{background-color:#613854}.bc-cheddar{color:#ff7243}.bc-cheddar-bg{background-color:#ff7243}.bc-coca-cola{color:#ed1c16}.bc-coca-cola-bg{background-color:#ed1c16}.bc-code-school{color:#616f67}.bc-code-school-bg{background-color:#616f67}.bc-code-school-2{color:#c68143}.bc-code-school-2-bg{background-color:#c68143}.bc-creative-market{color:#8ba753}.bc-creative-market-bg{background-color:#8ba753}.bc-delicious{color:#39f}.bc-delicious-bg{background-color:#39f}.bc-delicious-2{color:#222}.bc-delicious-2-bg{background-color:#222}.bc-delicious-3{color:#eee}.bc-delicious-3-bg{background-color:#eee}.bc-dell{color:#0085c3}.bc-dell-bg{background-color:#0085c3}.bc-dell-2{color:#7ab800}.bc-dell-2-bg{background-color:#7ab800}.bc-dell-3{color:#f2af00}.bc-dell-3-bg{background-color:#f2af00}.bc-dell-4{color:#dc5034}.bc-dell-4-bg{background-color:#dc5034}.bc-dell-5{color:#ce1126}.bc-dell-5-bg{background-color:#ce1126}.bc-dell-6{color:#b7295a}.bc-dell-6-bg{background-color:#b7295a}.bc-dell-7{color:#6e2585}.bc-dell-7-bg{background-color:#6e2585}.bc-dell-8{color:#71c6c1}.bc-dell-8-bg{background-color:#71c6c1}.bc-dell-9{color:#5482ab}.bc-dell-9-bg{background-color:#5482ab}.bc-dell-10{color:#009bbb}.bc-dell-10-bg{background-color:#009bbb}.bc-dell-11{color:#444}.bc-dell-11-bg{background-color:#444}.bc-dell-12{color:#eee}.bc-dell-12-bg{background-color:#eee}.bc-designmoo{color:#e64b50}.bc-designmoo-bg{background-color:#e64b50}.bc-designmoo-2{color:#dbc65d}.bc-designmoo-2-bg{background-color:#dbc65d}.bc-deviantart{color:#4e6252}.bc-deviantart-bg{background-color:#4e6252}.bc-designer-news{color:#2d72d9}.bc-designer-news-bg{background-color:#2d72d9}.bc-devour{color:red}.bc-devour-bg{background-color:red}.bc-dewalt{color:#febd17}.bc-dewalt-bg{background-color:#febd17}.bc-disqus{color:#2e9fff}.bc-disqus-bg{background-color:#2e9fff}.bc-dribbble{color:#444}.bc-dribbble-bg{background-color:#444}.bc-dribbble-2{color:#ea4c89}.bc-dribbble-2-bg{background-color:#ea4c89}.bc-dribbble-3{color:#8aba56}.bc-dribbble-3-bg{background-color:#8aba56}.bc-dribbble-4{color:#f83}.bc-dribbble-4-bg{background-color:#f83}.bc-dribbble-5{color:#00b6e3}.bc-dribbble-5-bg{background-color:#00b6e3}.bc-dribbble-6{color:#9ba5a8}.bc-dribbble-6-bg{background-color:#9ba5a8}.bc-dropbox{color:#007ee5}.bc-dropbox-bg{background-color:#007ee5}.bc-dropbox-2{color:#7b8994}.bc-dropbox-2-bg{background-color:#7b8994}.bc-dropbox-3{color:#47525d}.bc-dropbox-3-bg{background-color:#47525d}.bc-dropbox-4{color:#3d464d}.bc-dropbox-4-bg{background-color:#3d464d}.bc-drupal{color:#0077c0}.bc-drupal-bg{background-color:#0077c0}.bc-drupal-2{color:#81ceff}.bc-drupal-2-bg{background-color:#81ceff}.bc-drupal-3{color:#00598e}.bc-drupal-3-bg{background-color:#00598e}.bc-dunked{color:#2f3238}.bc-dunked-bg{background-color:#2f3238}.bc-dunked-2{color:#3fc380}.bc-dunked-2-bg{background-color:#3fc380}.bc-ebay{color:#e53238}.bc-ebay-bg{background-color:#e53238}.bc-ebay-2{color:#0064d2}.bc-ebay-2-bg{background-color:#0064d2}.bc-ebay-3{color:#f5af02}.bc-ebay-3-bg{background-color:#f5af02}.bc-ebay-4{color:#86b817}.bc-ebay-4-bg{background-color:#86b817}.bc-engadget{color:#39c}.bc-engadget-bg{background-color:#39c}.bc-envato{color:#528036}.bc-envato-bg{background-color:#528036}.bc-etsy{color:#eb6d20}.bc-etsy-bg{background-color:#eb6d20}.bc-evernote{color:#5ba525}.bc-evernote-bg{background-color:#5ba525}.bc-fab-com{color:#dd0017}.bc-fab-com-bg{background-color:#dd0017}.bc-facebook{color:#3b5998}.bc-facebook-bg{background-color:#3b5998}.bc-firefox{color:#e66000}.bc-firefox-bg{background-color:#e66000}.bc-flickr{color:#0063dc}.bc-flickr-bg{background-color:#0063dc}.bc-flickr-2{color:#ff0084}.bc-flickr-2-bg{background-color:#ff0084}.bc-forrst{color:#5b9a68}.bc-forrst-bg{background-color:#5b9a68}.bc-foursquare{color:#25a0ca}.bc-foursquare-bg{background-color:#25a0ca}.bc-garmin{color:#007cc3}.bc-garmin-bg{background-color:#007cc3}.bc-getglue{color:#2d75a2}.bc-getglue-bg{background-color:#2d75a2}.bc-gimmebar{color:#f70078}.bc-gimmebar-bg{background-color:#f70078}.bc-github{color:#171515}.bc-github-bg{background-color:#171515}.bc-google-2{color:#db4437}.bc-google-2-bg{background-color:#db4437}.bc-google-3{color:#f4b400}.bc-google-3-bg{background-color:#f4b400}.bc-google-4{color:#0f9d58}.bc-google-4-bg{background-color:#0f9d58}.bc-google-5{color:#e7e6dd}.bc-google-5-bg{background-color:#e7e6dd}.bc-google{color:#dd4b39}.bc-google-bg{background-color:#dd4b39}.bc-grooveshark{color:#f77f00}.bc-grooveshark-bg{background-color:#f77f00}.bc-groupon{color:#82b548}.bc-groupon-bg{background-color:#82b548}.bc-hacker-news{color:#f60}.bc-hacker-news-bg{background-color:#f60}.bc-hellowallet{color:#0085ca}.bc-hellowallet-bg{background-color:#0085ca}.bc-heroku{color:#c7c5e6}.bc-heroku-bg{background-color:#c7c5e6}.bc-heroku-2{color:#6567a5}.bc-heroku-2-bg{background-color:#6567a5}.bc-hootsuite{color:#036}.bc-hootsuite-bg{background-color:#036}.bc-houzz{color:#73ba37}.bc-houzz-bg{background-color:#73ba37}.bc-hp{color:#0096d6}.bc-hp-bg{background-color:#0096d6}.bc-html5{color:#ec6231}.bc-html5-bg{background-color:#ec6231}.bc-hulu{color:#8cc83b}.bc-hulu-bg{background-color:#8cc83b}.bc-ibm{color:#003e6a}.bc-ibm-bg{background-color:#003e6a}.bc-ikea{color:#fc3}.bc-ikea-bg{background-color:#fc3}.bc-imdb{color:#f3ce13}.bc-imdb-bg{background-color:#f3ce13}.bc-instagram{color:#3f729b}.bc-instagram-bg{background-color:#3f729b}.bc-instapaper{color:#1c1c1c}.bc-instapaper-bg{background-color:#1c1c1c}.bc-intel{color:#0071c5}.bc-intel-bg{background-color:#0071c5}.bc-intuit{color:#365ebf}.bc-intuit-bg{background-color:#365ebf}.bc-kickstarter{color:#76cc1e}.bc-kickstarter-bg{background-color:#76cc1e}.bc-kippt{color:#e03500}.bc-kippt-bg{background-color:#e03500}.bc-kodery{color:#00af81}.bc-kodery-bg{background-color:#00af81}.bc-lastfm{color:#c3000d}.bc-lastfm-bg{background-color:#c3000d}.bc-linkedin{color:#0e76a8}.bc-linkedin-bg{background-color:#0e76a8}.bc-livestream{color:#cf0005}.bc-livestream-bg{background-color:#cf0005}.bc-lumo{color:#576396}.bc-lumo-bg{background-color:#576396}.bc-makita{color:#d82028}.bc-makita-bg{background-color:#d82028}.bc-makita-2{color:#29a0b7}.bc-makita-2-bg{background-color:#29a0b7}.bc-mixpanel{color:#a086d3}.bc-mixpanel-bg{background-color:#a086d3}.bc-meetup{color:#e51937}.bc-meetup-bg{background-color:#e51937}.bc-netflix{color:#b9070a}.bc-netflix-bg{background-color:#b9070a}.bc-nokia{color:#183693}.bc-nokia-bg{background-color:#183693}.bc-nvidia{color:#76b900}.bc-nvidia-bg{background-color:#76b900}.bc-odnoklassniki{color:#ed812b}.bc-odnoklassniki-bg{background-color:#ed812b}.bc-opera{color:#cc0f16}.bc-opera-bg{background-color:#cc0f16}.bc-path{color:#e41f11}.bc-path-bg{background-color:#e41f11}.bc-paypal-dark{color:#1e477a}.bc-paypal-dark-bg{background-color:#1e477a}.bc-paypal-dark-2{color:#3b7bbf}.bc-paypal-dark-2-bg{background-color:#3b7bbf}.bc-pinboard{color:#0000e6}.bc-pinboard-bg{background-color:#0000e6}.bc-pinterest{color:#c8232c}.bc-pinterest-bg{background-color:#c8232c}.bc-playstation{color:#665cbe}.bc-playstation-bg{background-color:#665cbe}.bc-pocket{color:#ee4056}.bc-pocket-bg{background-color:#ee4056}.bc-prezi{color:#318bff}.bc-prezi-bg{background-color:#318bff}.bc-pusha{color:#0f71b4}.bc-pusha-bg{background-color:#0f71b4}.bc-quora{color:#a82400}.bc-quora-bg{background-color:#a82400}.bc-quote-fm{color:#66ceff}.bc-quote-fm-bg{background-color:#66ceff}.bc-rdio{color:#008fd5}.bc-rdio-bg{background-color:#008fd5}.bc-readability{color:#9c0000}.bc-readability-bg{background-color:#9c0000}.bc-red-hat{color:#c00}.bc-red-hat-bg{background-color:#c00}.bc-reddit{color:#cee2f8}.bc-reddit-bg{background-color:#cee2f8}.bc-reddit-2{color:#ff4500}.bc-reddit-2-bg{background-color:#ff4500}.bc-resource{color:#7eb400}.bc-resource-bg{background-color:#7eb400}.bc-rockpack{color:#0ba6ab}.bc-rockpack-bg{background-color:#0ba6ab}.bc-roon{color:#62b0d9}.bc-roon-bg{background-color:#62b0d9}.bc-rss{color:#ee802f}.bc-rss-bg{background-color:#ee802f}.bc-salesforce{color:#1798c1}.bc-salesforce-bg{background-color:#1798c1}.bc-samsung{color:#0c4da2}.bc-samsung-bg{background-color:#0c4da2}.bc-shopify{color:#96bf48}.bc-shopify-bg{background-color:#96bf48}.bc-skype{color:#00aff0}.bc-skype-bg{background-color:#00aff0}.bc-smashing-magazine{color:#f0503a}.bc-smashing-magazine-bg{background-color:#f0503a}.bc-snagajob{color:#f47a20}.bc-snagajob-bg{background-color:#f47a20}.bc-softonic{color:#008ace}.bc-softonic-bg{background-color:#008ace}.bc-soundcloud{color:#f70}.bc-soundcloud-bg{background-color:#f70}.bc-space-box{color:#f86960}.bc-space-box-bg{background-color:#f86960}.bc-spotify{color:#81b71a}.bc-spotify-bg{background-color:#81b71a}.bc-sprint{color:#fee100}.bc-sprint-bg{background-color:#fee100}.bc-squarespace{color:#121212}.bc-squarespace-bg{background-color:#121212}.bc-stackoverflow{color:#ef8236}.bc-stackoverflow-bg{background-color:#ef8236}.bc-staples{color:#c00}.bc-staples-bg{background-color:#c00}.bc-status-chart{color:#d7584f}.bc-status-chart-bg{background-color:#d7584f}.bc-stripe{color:#008cdd}.bc-stripe-bg{background-color:#008cdd}.bc-studyblue{color:#00afe1}.bc-studyblue-bg{background-color:#00afe1}.bc-stumbleupon{color:#f74425}.bc-stumbleupon-bg{background-color:#f74425}.bc-t-mobile{color:#ea0a8e}.bc-t-mobile-bg{background-color:#ea0a8e}.bc-technorati{color:#40a800}.bc-technorati-bg{background-color:#40a800}.bc-the-next-web{color:#ef4423}.bc-the-next-web-bg{background-color:#ef4423}.bc-treehouse{color:#5cb868}.bc-treehouse-bg{background-color:#5cb868}.bc-trello{color:#256a92}.bc-trello-bg{background-color:#256a92}.bc-trulia{color:#5eab1f}.bc-trulia-bg{background-color:#5eab1f}.bc-tumblr{color:#34526f}.bc-tumblr-bg{background-color:#34526f}.bc-twitch-tv{color:#6441a5}.bc-twitch-tv-bg{background-color:#6441a5}.bc-twitter{color:#55acee}.bc-twitter-bg{background-color:#55acee}.bc-typekit{color:#9aca3c}.bc-typekit-bg{background-color:#9aca3c}.bc-typo3{color:#ff8700}.bc-typo3-bg{background-color:#ff8700}.bc-ubuntu{color:#dd4814}.bc-ubuntu-bg{background-color:#dd4814}.bc-ustream{color:#38f}.bc-ustream-bg{background-color:#38f}.bc-verizon{color:#ef1d1d}.bc-verizon-bg{background-color:#ef1d1d}.bc-vimeo{color:#4bf}.bc-vimeo-bg{background-color:#4bf}.bc-vine{color:#00a478}.bc-vine-bg{background-color:#00a478}.bc-virb{color:#06afd8}.bc-virb-bg{background-color:#06afd8}.bc-virgin-media{color:#c00}.bc-virgin-media-bg{background-color:#c00}.bc-vkontakte{color:#45668e}.bc-vkontakte-bg{background-color:#45668e}.bc-wooga{color:#5b009c}.bc-wooga-bg{background-color:#5b009c}.bc-wordpress{color:#21759b}.bc-wordpress-bg{background-color:#21759b}.bc-wordpress-2{color:#d54e21}.bc-wordpress-2-bg{background-color:#d54e21}.bc-wordpress-3{color:#464646}.bc-wordpress-3-bg{background-color:#464646}.bc-wunderlist{color:#2b88d9}.bc-wunderlist-bg{background-color:#2b88d9}.bc-xbox{color:#52b043}.bc-xbox-bg{background-color:#52b043}.bc-xing{color:#126567}.bc-xing-bg{background-color:#126567}.bc-yahoo{color:#720e9e}.bc-yahoo-bg{background-color:#720e9e}.bc-yandex{color:#fc0}.bc-yandex-bg{background-color:#fc0}.bc-yelp{color:#c41200}.bc-yelp-bg{background-color:#c41200}.bc-youtube{color:#c4302b}.bc-youtube-bg{background-color:#c4302b}.bc-zalongo{color:#5498dc}.bc-zalongo-bg{background-color:#5498dc}.bc-zendesk{color:#78a300}.bc-zendesk-bg{background-color:#78a300}.bc-zerply{color:#9dcc7a}.bc-zerply-bg{background-color:#9dcc7a}.bc-zootool{color:#5e8b1d}.bc-zootool-bg{background-color:#5e8b1d}.bc-microsoft{color:#f65314}.bc-microsoft-bg{background-color:#f65314}.bc-microsoft-2{color:#7cbb00}.bc-microsoft-2-bg{background-color:#7cbb00}.bc-microsoft-3{color:#00a1f1}.bc-microsoft-3-bg{background-color:#00a1f1}.bc-microsoft-4{color:#fb0}.bc-microsoft-4-bg{background-color:#fb0}.bc-windows{color:#00bcf2}.bc-windows-bg{background-color:#00bcf2}.bc-microsoft-office{color:#ea3e23}.bc-microsoft-office-bg{background-color:#ea3e23}.bc-windows-phone{color:#68217a}.bc-windows-phone-bg{background-color:#68217a}.bc-bing{color:#ffb900}.bc-bing-bg{background-color:#ffb900}.bc-kiwipay{color:#00b0df}.bc-kiwipay-bg{background-color:#00b0df}.bc-wordpress-com{color:#1e8cbe}.bc-wordpress-com-bg{background-color:#1e8cbe}.bc-django{color:#092e20}.bc-django-bg{background-color:#092e20}.bc-geocaching{color:#4a742c}.bc-geocaching-bg{background-color:#4a742c}.bc-utorrent{color:#00853f}.bc-utorrent-bg{background-color:#00853f}.bc-arch-linux{color:#1793d1}.bc-arch-linux-bg{background-color:#1793d1}.bc-arch-linux-2{color:#333}.bc-arch-linux-2-bg{background-color:#333}.bc-gittip{color:#630}.bc-gittip-bg{background-color:#630}.bc-gittip-2{color:#396}.bc-gittip-2-bg{background-color:#396}.bc-flattr{color:#f67c1a}.bc-flattr-bg{background-color:#f67c1a}.bc-flattr-2{color:#338d11}.bc-flattr-2-bg{background-color:#338d11}.bc-hsbc{color:#db0011}.bc-hsbc-bg{background-color:#db0011}.bc-zopim{color:#ff9d3b}.bc-zopim-bg{background-color:#ff9d3b}.bc-bitbucket{color:#205081}.bc-bitbucket-bg{background-color:#205081}.bc-strava{color:#fc4c02}.bc-strava-bg{background-color:#fc4c02} -------------------------------------------------------------------------------- /dist/0.1.0/less/brand-colors.0.1.0.less: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.1.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | @bc-4ormat: #fb0a2a;@bc-500px: #00aeef;@bc-about-me: #00405d;@bc-about-me-2: #062f3c;@bc-about-me-3: #2b82ad;@bc-about-me-4: #cc7a00;@bc-about-me-5: #ffcc33;@bc-addvocate: #ff3322;@bc-adobe: #ff0000;@bc-adobe-2: #fbb034;@bc-adobe-3: #ffdd00;@bc-adobe-4: #c1d82f;@bc-adobe-5: #00a4e4;@bc-adobe-6: #8a7967;@bc-adobe-7: #6a737b;@bc-aim: #ffd900;@bc-amazon: #ff9900;@bc-amazon-2: #146eb4;@bc-android: #a4c639;@bc-angies-list: #7fbb00;@bc-aol: #ff0b00;@bc-aol-2: #00c4ff;@bc-asana: #1f8dd6;@bc-asana-2: #34ad00;@bc-atlassian: #003366;@bc-behance: #1769ff;@bc-big-cartel: #a0ac48;@bc-big-cartel-2: #70b29c;@bc-bitly: #ee6123;@bc-bitly-2: #61b3de;@bc-blogger: #f57d00;@bc-boeing: #0039a6;@bc-booking-com: #003580;@bc-carbonmade: #613854;@bc-cheddar: #ff7243;@bc-coca-cola: #ed1c16;@bc-code-school: #616f67;@bc-code-school-2: #c68143;@bc-creative-market: #8ba753;@bc-delicious: #3399ff;@bc-delicious-2: #222222;@bc-delicious-3: #eeeeee;@bc-dell: #0085c3;@bc-dell-2: #7ab800;@bc-dell-3: #f2af00;@bc-dell-4: #dc5034;@bc-dell-5: #ce1126;@bc-dell-6: #b7295a;@bc-dell-7: #6e2585;@bc-dell-8: #71c6c1;@bc-dell-9: #5482ab;@bc-dell-10: #009bbb;@bc-dell-11: #444444;@bc-dell-12: #eeeeee;@bc-designmoo: #e64b50;@bc-designmoo-2: #dbc65d;@bc-deviantart: #4e6252;@bc-designer-news: #2d72d9;@bc-devour: #ff0000;@bc-dewalt: #febd17;@bc-disqus: #2e9fff;@bc-dribbble: #444444;@bc-dribbble-2: #ea4c89;@bc-dribbble-3: #8aba56;@bc-dribbble-4: #ff8833;@bc-dribbble-5: #00b6e3;@bc-dribbble-6: #9ba5a8;@bc-dropbox: #007ee5;@bc-dropbox-2: #7b8994;@bc-dropbox-3: #47525d;@bc-dropbox-4: #3d464d;@bc-drupal: #0077c0;@bc-drupal-2: #81ceff;@bc-drupal-3: #00598e;@bc-dunked: #2f3238;@bc-dunked-2: #3fc380;@bc-ebay: #e53238;@bc-ebay-2: #0064d2;@bc-ebay-3: #f5af02;@bc-ebay-4: #86b817;@bc-engadget: #3399cc;@bc-envato: #528036;@bc-etsy: #eb6d20;@bc-evernote: #5ba525;@bc-fab-com: #dd0017;@bc-facebook: #3b5998;@bc-firefox: #e66000;@bc-flickr: #0063dc;@bc-flickr-2: #ff0084;@bc-forrst: #5b9a68;@bc-foursquare: #25a0ca;@bc-garmin: #007cc3;@bc-getglue: #2d75a2;@bc-gimmebar: #f70078;@bc-github: #171515;@bc-google: #4285f4;@bc-google-2: #db4437;@bc-google-3: #f4b400;@bc-google-4: #0f9d58;@bc-google-5: #e7e6dd;@bc-google: #dd4b39;@bc-grooveshark: #f77f00;@bc-groupon: #82b548;@bc-hacker-news: #ff6600;@bc-hellowallet: #0085ca;@bc-heroku: #c7c5e6;@bc-heroku-2: #6567a5;@bc-hootsuite: #003366;@bc-houzz: #73ba37;@bc-hp: #0096d6;@bc-html5: #ec6231;@bc-hulu: #8cc83b;@bc-ibm: #003e6a;@bc-ikea: #ffcc33;@bc-imdb: #f3ce13;@bc-instagram: #3f729b;@bc-instapaper: #1c1c1c;@bc-intel: #0071c5;@bc-intuit: #365ebf;@bc-kickstarter: #76cc1e;@bc-kippt: #e03500;@bc-kodery: #00af81;@bc-lastfm: #c3000d;@bc-linkedin: #0e76a8;@bc-livestream: #cf0005;@bc-lumo: #576396;@bc-makita: #d82028;@bc-makita-2: #29a0b7;@bc-mixpanel: #a086d3;@bc-meetup: #e51937;@bc-netflix: #b9070a;@bc-nokia: #183693;@bc-nvidia: #76b900;@bc-odnoklassniki: #ed812b;@bc-opera: #cc0f16;@bc-path: #e41f11;@bc-paypal-dark: #1e477a;@bc-paypal-dark-2: #3b7bbf;@bc-pinboard: #0000e6;@bc-pinterest: #c8232c;@bc-playstation: #665cbe;@bc-pocket: #ee4056;@bc-prezi: #318bff;@bc-pusha: #0f71b4;@bc-quora: #a82400;@bc-quote-fm: #66ceff;@bc-rdio: #008fd5;@bc-readability: #9c0000;@bc-red-hat: #cc0000;@bc-reddit: #cee2f8;@bc-reddit-2: #ff4500;@bc-resource: #7eb400;@bc-rockpack: #0ba6ab;@bc-roon: #62b0d9;@bc-rss: #ee802f;@bc-salesforce: #1798c1;@bc-samsung: #0c4da2;@bc-shopify: #96bf48;@bc-skype: #00aff0;@bc-smashing-magazine: #f0503a;@bc-snagajob: #f47a20;@bc-softonic: #008ace;@bc-soundcloud: #ff7700;@bc-space-box: #f86960;@bc-spotify: #81b71a;@bc-sprint: #fee100;@bc-squarespace: #121212;@bc-stackoverflow: #ef8236;@bc-staples: #cc0000;@bc-status-chart: #d7584f;@bc-stripe: #008cdd;@bc-studyblue: #00afe1;@bc-stumbleupon: #f74425;@bc-t-mobile: #ea0a8e;@bc-technorati: #40a800;@bc-the-next-web: #ef4423;@bc-treehouse: #5cb868;@bc-trello: #256a92;@bc-trulia: #5eab1f;@bc-tumblr: #34526f;@bc-twitch-tv: #6441a5;@bc-twitter: #55acee;@bc-typekit: #9aca3c;@bc-typo3: #ff8700;@bc-ubuntu: #dd4814;@bc-ustream: #3388ff;@bc-verizon: #ef1d1d;@bc-vimeo: #44bbff;@bc-vine: #00a478;@bc-virb: #06afd8;@bc-virgin-media: #cc0000;@bc-vkontakte: #45668e;@bc-wooga: #5b009c;@bc-wordpress: #21759b;@bc-wordpress-2: #d54e21;@bc-wordpress-3: #464646;@bc-wunderlist: #2b88d9;@bc-xbox: #52b043;@bc-xing: #126567;@bc-yahoo: #720e9e;@bc-yandex: #ffcc00;@bc-yelp: #c41200;@bc-youtube: #c4302b;@bc-zalongo: #5498dc;@bc-zendesk: #78a300;@bc-zerply: #9dcc7a;@bc-zootool: #5e8b1d;@bc-microsoft: #f65314;@bc-microsoft-2: #7cbb00;@bc-microsoft-3: #00a1f1;@bc-microsoft-4: #ffbb00;@bc-windows: #00bcf2;@bc-microsoft-office: #ea3e23;@bc-windows-phone: #68217a;@bc-bing: #ffb900;@bc-kiwipay: #00b0df;@bc-wordpress-com: #1e8cbe;@bc-django: #092e20;@bc-geocaching: #4a742c;@bc-utorrent: #00853f;@bc-arch-linux: #1793d1;@bc-arch-linux-2: #333333;@bc-gittip: #663300;@bc-gittip-2: #339966;@bc-flattr: #f67c1a;@bc-flattr-2: #338d11;@bc-hsbc: #db0011;@bc-zopim: #ff9d3b;@bc-bitbucket: #205081;@bc-strava: #fc4c02; -------------------------------------------------------------------------------- /dist/0.1.0/sass/brand-colors.0.1.0.sass: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.1.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-amazon: #ff9900; 42 | 43 | $bc-amazon-2: #146eb4; 44 | 45 | $bc-android: #a4c639; 46 | 47 | $bc-angies-list: #7fbb00; 48 | 49 | $bc-aol: #ff0b00; 50 | 51 | $bc-aol-2: #00c4ff; 52 | 53 | $bc-asana: #1f8dd6; 54 | 55 | $bc-asana-2: #34ad00; 56 | 57 | $bc-atlassian: #003366; 58 | 59 | $bc-behance: #1769ff; 60 | 61 | $bc-big-cartel: #a0ac48; 62 | 63 | $bc-big-cartel-2: #70b29c; 64 | 65 | $bc-bitly: #ee6123; 66 | 67 | $bc-bitly-2: #61b3de; 68 | 69 | $bc-blogger: #f57d00; 70 | 71 | $bc-boeing: #0039a6; 72 | 73 | $bc-booking-com: #003580; 74 | 75 | $bc-carbonmade: #613854; 76 | 77 | $bc-cheddar: #ff7243; 78 | 79 | $bc-coca-cola: #ed1c16; 80 | 81 | $bc-code-school: #616f67; 82 | 83 | $bc-code-school-2: #c68143; 84 | 85 | $bc-creative-market: #8ba753; 86 | 87 | $bc-delicious: #3399ff; 88 | 89 | $bc-delicious-2: #222222; 90 | 91 | $bc-delicious-3: #eeeeee; 92 | 93 | $bc-dell: #0085c3; 94 | 95 | $bc-dell-2: #7ab800; 96 | 97 | $bc-dell-3: #f2af00; 98 | 99 | $bc-dell-4: #dc5034; 100 | 101 | $bc-dell-5: #ce1126; 102 | 103 | $bc-dell-6: #b7295a; 104 | 105 | $bc-dell-7: #6e2585; 106 | 107 | $bc-dell-8: #71c6c1; 108 | 109 | $bc-dell-9: #5482ab; 110 | 111 | $bc-dell-10: #009bbb; 112 | 113 | $bc-dell-11: #444444; 114 | 115 | $bc-dell-12: #eeeeee; 116 | 117 | $bc-designmoo: #e64b50; 118 | 119 | $bc-designmoo-2: #dbc65d; 120 | 121 | $bc-deviantart: #4e6252; 122 | 123 | $bc-designer-news: #2d72d9; 124 | 125 | $bc-devour: #ff0000; 126 | 127 | $bc-dewalt: #febd17; 128 | 129 | $bc-disqus: #2e9fff; 130 | 131 | $bc-dribbble: #444444; 132 | 133 | $bc-dribbble-2: #ea4c89; 134 | 135 | $bc-dribbble-3: #8aba56; 136 | 137 | $bc-dribbble-4: #ff8833; 138 | 139 | $bc-dribbble-5: #00b6e3; 140 | 141 | $bc-dribbble-6: #9ba5a8; 142 | 143 | $bc-dropbox: #007ee5; 144 | 145 | $bc-dropbox-2: #7b8994; 146 | 147 | $bc-dropbox-3: #47525d; 148 | 149 | $bc-dropbox-4: #3d464d; 150 | 151 | $bc-drupal: #0077c0; 152 | 153 | $bc-drupal-2: #81ceff; 154 | 155 | $bc-drupal-3: #00598e; 156 | 157 | $bc-dunked: #2f3238; 158 | 159 | $bc-dunked-2: #3fc380; 160 | 161 | $bc-ebay: #e53238; 162 | 163 | $bc-ebay-2: #0064d2; 164 | 165 | $bc-ebay-3: #f5af02; 166 | 167 | $bc-ebay-4: #86b817; 168 | 169 | $bc-engadget: #3399cc; 170 | 171 | $bc-envato: #528036; 172 | 173 | $bc-etsy: #eb6d20; 174 | 175 | $bc-evernote: #5ba525; 176 | 177 | $bc-fab-com: #dd0017; 178 | 179 | $bc-facebook: #3b5998; 180 | 181 | $bc-firefox: #e66000; 182 | 183 | $bc-flickr: #0063dc; 184 | 185 | $bc-flickr-2: #ff0084; 186 | 187 | $bc-forrst: #5b9a68; 188 | 189 | $bc-foursquare: #25a0ca; 190 | 191 | $bc-garmin: #007cc3; 192 | 193 | $bc-getglue: #2d75a2; 194 | 195 | $bc-gimmebar: #f70078; 196 | 197 | $bc-github: #171515; 198 | 199 | $bc-google: #4285f4; 200 | 201 | $bc-google-2: #db4437; 202 | 203 | $bc-google-3: #f4b400; 204 | 205 | $bc-google-4: #0f9d58; 206 | 207 | $bc-google-5: #e7e6dd; 208 | 209 | $bc-google: #dd4b39; 210 | 211 | $bc-grooveshark: #f77f00; 212 | 213 | $bc-groupon: #82b548; 214 | 215 | $bc-hacker-news: #ff6600; 216 | 217 | $bc-hellowallet: #0085ca; 218 | 219 | $bc-heroku: #c7c5e6; 220 | 221 | $bc-heroku-2: #6567a5; 222 | 223 | $bc-hootsuite: #003366; 224 | 225 | $bc-houzz: #73ba37; 226 | 227 | $bc-hp: #0096d6; 228 | 229 | $bc-html5: #ec6231; 230 | 231 | $bc-hulu: #8cc83b; 232 | 233 | $bc-ibm: #003e6a; 234 | 235 | $bc-ikea: #ffcc33; 236 | 237 | $bc-imdb: #f3ce13; 238 | 239 | $bc-instagram: #3f729b; 240 | 241 | $bc-instapaper: #1c1c1c; 242 | 243 | $bc-intel: #0071c5; 244 | 245 | $bc-intuit: #365ebf; 246 | 247 | $bc-kickstarter: #76cc1e; 248 | 249 | $bc-kippt: #e03500; 250 | 251 | $bc-kodery: #00af81; 252 | 253 | $bc-lastfm: #c3000d; 254 | 255 | $bc-linkedin: #0e76a8; 256 | 257 | $bc-livestream: #cf0005; 258 | 259 | $bc-lumo: #576396; 260 | 261 | $bc-makita: #d82028; 262 | 263 | $bc-makita-2: #29a0b7; 264 | 265 | $bc-mixpanel: #a086d3; 266 | 267 | $bc-meetup: #e51937; 268 | 269 | $bc-netflix: #b9070a; 270 | 271 | $bc-nokia: #183693; 272 | 273 | $bc-nvidia: #76b900; 274 | 275 | $bc-odnoklassniki: #ed812b; 276 | 277 | $bc-opera: #cc0f16; 278 | 279 | $bc-path: #e41f11; 280 | 281 | $bc-paypal-dark: #1e477a; 282 | 283 | $bc-paypal-dark-2: #3b7bbf; 284 | 285 | $bc-pinboard: #0000e6; 286 | 287 | $bc-pinterest: #c8232c; 288 | 289 | $bc-playstation: #665cbe; 290 | 291 | $bc-pocket: #ee4056; 292 | 293 | $bc-prezi: #318bff; 294 | 295 | $bc-pusha: #0f71b4; 296 | 297 | $bc-quora: #a82400; 298 | 299 | $bc-quote-fm: #66ceff; 300 | 301 | $bc-rdio: #008fd5; 302 | 303 | $bc-readability: #9c0000; 304 | 305 | $bc-red-hat: #cc0000; 306 | 307 | $bc-reddit: #cee2f8; 308 | 309 | $bc-reddit-2: #ff4500; 310 | 311 | $bc-resource: #7eb400; 312 | 313 | $bc-rockpack: #0ba6ab; 314 | 315 | $bc-roon: #62b0d9; 316 | 317 | $bc-rss: #ee802f; 318 | 319 | $bc-salesforce: #1798c1; 320 | 321 | $bc-samsung: #0c4da2; 322 | 323 | $bc-shopify: #96bf48; 324 | 325 | $bc-skype: #00aff0; 326 | 327 | $bc-smashing-magazine: #f0503a; 328 | 329 | $bc-snagajob: #f47a20; 330 | 331 | $bc-softonic: #008ace; 332 | 333 | $bc-soundcloud: #ff7700; 334 | 335 | $bc-space-box: #f86960; 336 | 337 | $bc-spotify: #81b71a; 338 | 339 | $bc-sprint: #fee100; 340 | 341 | $bc-squarespace: #121212; 342 | 343 | $bc-stackoverflow: #ef8236; 344 | 345 | $bc-staples: #cc0000; 346 | 347 | $bc-status-chart: #d7584f; 348 | 349 | $bc-stripe: #008cdd; 350 | 351 | $bc-studyblue: #00afe1; 352 | 353 | $bc-stumbleupon: #f74425; 354 | 355 | $bc-t-mobile: #ea0a8e; 356 | 357 | $bc-technorati: #40a800; 358 | 359 | $bc-the-next-web: #ef4423; 360 | 361 | $bc-treehouse: #5cb868; 362 | 363 | $bc-trello: #256a92; 364 | 365 | $bc-trulia: #5eab1f; 366 | 367 | $bc-tumblr: #34526f; 368 | 369 | $bc-twitch-tv: #6441a5; 370 | 371 | $bc-twitter: #55acee; 372 | 373 | $bc-typekit: #9aca3c; 374 | 375 | $bc-typo3: #ff8700; 376 | 377 | $bc-ubuntu: #dd4814; 378 | 379 | $bc-ustream: #3388ff; 380 | 381 | $bc-verizon: #ef1d1d; 382 | 383 | $bc-vimeo: #44bbff; 384 | 385 | $bc-vine: #00a478; 386 | 387 | $bc-virb: #06afd8; 388 | 389 | $bc-virgin-media: #cc0000; 390 | 391 | $bc-vkontakte: #45668e; 392 | 393 | $bc-wooga: #5b009c; 394 | 395 | $bc-wordpress: #21759b; 396 | 397 | $bc-wordpress-2: #d54e21; 398 | 399 | $bc-wordpress-3: #464646; 400 | 401 | $bc-wunderlist: #2b88d9; 402 | 403 | $bc-xbox: #52b043; 404 | 405 | $bc-xing: #126567; 406 | 407 | $bc-yahoo: #720e9e; 408 | 409 | $bc-yandex: #ffcc00; 410 | 411 | $bc-yelp: #c41200; 412 | 413 | $bc-youtube: #c4302b; 414 | 415 | $bc-zalongo: #5498dc; 416 | 417 | $bc-zendesk: #78a300; 418 | 419 | $bc-zerply: #9dcc7a; 420 | 421 | $bc-zootool: #5e8b1d; 422 | 423 | $bc-microsoft: #f65314; 424 | 425 | $bc-microsoft-2: #7cbb00; 426 | 427 | $bc-microsoft-3: #00a1f1; 428 | 429 | $bc-microsoft-4: #ffbb00; 430 | 431 | $bc-windows: #00bcf2; 432 | 433 | $bc-microsoft-office: #ea3e23; 434 | 435 | $bc-windows-phone: #68217a; 436 | 437 | $bc-bing: #ffb900; 438 | 439 | $bc-kiwipay: #00b0df; 440 | 441 | $bc-wordpress-com: #1e8cbe; 442 | 443 | $bc-django: #092e20; 444 | 445 | $bc-geocaching: #4a742c; 446 | 447 | $bc-utorrent: #00853f; 448 | 449 | $bc-arch-linux: #1793d1; 450 | 451 | $bc-arch-linux-2: #333333; 452 | 453 | $bc-gittip: #663300; 454 | 455 | $bc-gittip-2: #339966; 456 | 457 | $bc-flattr: #f67c1a; 458 | 459 | $bc-flattr-2: #338d11; 460 | 461 | $bc-hsbc: #db0011; 462 | 463 | $bc-zopim: #ff9d3b; 464 | 465 | $bc-bitbucket: #205081; 466 | 467 | $bc-strava: #fc4c02; 468 | -------------------------------------------------------------------------------- /dist/0.1.0/scss/brand-colors.0.1.0.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.1.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-amazon: #ff9900; 42 | 43 | $bc-amazon-2: #146eb4; 44 | 45 | $bc-android: #a4c639; 46 | 47 | $bc-angies-list: #7fbb00; 48 | 49 | $bc-aol: #ff0b00; 50 | 51 | $bc-aol-2: #00c4ff; 52 | 53 | $bc-asana: #1f8dd6; 54 | 55 | $bc-asana-2: #34ad00; 56 | 57 | $bc-atlassian: #003366; 58 | 59 | $bc-behance: #1769ff; 60 | 61 | $bc-big-cartel: #a0ac48; 62 | 63 | $bc-big-cartel-2: #70b29c; 64 | 65 | $bc-bitly: #ee6123; 66 | 67 | $bc-bitly-2: #61b3de; 68 | 69 | $bc-blogger: #f57d00; 70 | 71 | $bc-boeing: #0039a6; 72 | 73 | $bc-booking-com: #003580; 74 | 75 | $bc-carbonmade: #613854; 76 | 77 | $bc-cheddar: #ff7243; 78 | 79 | $bc-coca-cola: #ed1c16; 80 | 81 | $bc-code-school: #616f67; 82 | 83 | $bc-code-school-2: #c68143; 84 | 85 | $bc-creative-market: #8ba753; 86 | 87 | $bc-delicious: #3399ff; 88 | 89 | $bc-delicious-2: #222222; 90 | 91 | $bc-delicious-3: #eeeeee; 92 | 93 | $bc-dell: #0085c3; 94 | 95 | $bc-dell-2: #7ab800; 96 | 97 | $bc-dell-3: #f2af00; 98 | 99 | $bc-dell-4: #dc5034; 100 | 101 | $bc-dell-5: #ce1126; 102 | 103 | $bc-dell-6: #b7295a; 104 | 105 | $bc-dell-7: #6e2585; 106 | 107 | $bc-dell-8: #71c6c1; 108 | 109 | $bc-dell-9: #5482ab; 110 | 111 | $bc-dell-10: #009bbb; 112 | 113 | $bc-dell-11: #444444; 114 | 115 | $bc-dell-12: #eeeeee; 116 | 117 | $bc-designmoo: #e64b50; 118 | 119 | $bc-designmoo-2: #dbc65d; 120 | 121 | $bc-deviantart: #4e6252; 122 | 123 | $bc-designer-news: #2d72d9; 124 | 125 | $bc-devour: #ff0000; 126 | 127 | $bc-dewalt: #febd17; 128 | 129 | $bc-disqus: #2e9fff; 130 | 131 | $bc-dribbble: #444444; 132 | 133 | $bc-dribbble-2: #ea4c89; 134 | 135 | $bc-dribbble-3: #8aba56; 136 | 137 | $bc-dribbble-4: #ff8833; 138 | 139 | $bc-dribbble-5: #00b6e3; 140 | 141 | $bc-dribbble-6: #9ba5a8; 142 | 143 | $bc-dropbox: #007ee5; 144 | 145 | $bc-dropbox-2: #7b8994; 146 | 147 | $bc-dropbox-3: #47525d; 148 | 149 | $bc-dropbox-4: #3d464d; 150 | 151 | $bc-drupal: #0077c0; 152 | 153 | $bc-drupal-2: #81ceff; 154 | 155 | $bc-drupal-3: #00598e; 156 | 157 | $bc-dunked: #2f3238; 158 | 159 | $bc-dunked-2: #3fc380; 160 | 161 | $bc-ebay: #e53238; 162 | 163 | $bc-ebay-2: #0064d2; 164 | 165 | $bc-ebay-3: #f5af02; 166 | 167 | $bc-ebay-4: #86b817; 168 | 169 | $bc-engadget: #3399cc; 170 | 171 | $bc-envato: #528036; 172 | 173 | $bc-etsy: #eb6d20; 174 | 175 | $bc-evernote: #5ba525; 176 | 177 | $bc-fab-com: #dd0017; 178 | 179 | $bc-facebook: #3b5998; 180 | 181 | $bc-firefox: #e66000; 182 | 183 | $bc-flickr: #0063dc; 184 | 185 | $bc-flickr-2: #ff0084; 186 | 187 | $bc-forrst: #5b9a68; 188 | 189 | $bc-foursquare: #25a0ca; 190 | 191 | $bc-garmin: #007cc3; 192 | 193 | $bc-getglue: #2d75a2; 194 | 195 | $bc-gimmebar: #f70078; 196 | 197 | $bc-github: #171515; 198 | 199 | $bc-google: #4285f4; 200 | 201 | $bc-google-2: #db4437; 202 | 203 | $bc-google-3: #f4b400; 204 | 205 | $bc-google-4: #0f9d58; 206 | 207 | $bc-google-5: #e7e6dd; 208 | 209 | $bc-google: #dd4b39; 210 | 211 | $bc-grooveshark: #f77f00; 212 | 213 | $bc-groupon: #82b548; 214 | 215 | $bc-hacker-news: #ff6600; 216 | 217 | $bc-hellowallet: #0085ca; 218 | 219 | $bc-heroku: #c7c5e6; 220 | 221 | $bc-heroku-2: #6567a5; 222 | 223 | $bc-hootsuite: #003366; 224 | 225 | $bc-houzz: #73ba37; 226 | 227 | $bc-hp: #0096d6; 228 | 229 | $bc-html5: #ec6231; 230 | 231 | $bc-hulu: #8cc83b; 232 | 233 | $bc-ibm: #003e6a; 234 | 235 | $bc-ikea: #ffcc33; 236 | 237 | $bc-imdb: #f3ce13; 238 | 239 | $bc-instagram: #3f729b; 240 | 241 | $bc-instapaper: #1c1c1c; 242 | 243 | $bc-intel: #0071c5; 244 | 245 | $bc-intuit: #365ebf; 246 | 247 | $bc-kickstarter: #76cc1e; 248 | 249 | $bc-kippt: #e03500; 250 | 251 | $bc-kodery: #00af81; 252 | 253 | $bc-lastfm: #c3000d; 254 | 255 | $bc-linkedin: #0e76a8; 256 | 257 | $bc-livestream: #cf0005; 258 | 259 | $bc-lumo: #576396; 260 | 261 | $bc-makita: #d82028; 262 | 263 | $bc-makita-2: #29a0b7; 264 | 265 | $bc-mixpanel: #a086d3; 266 | 267 | $bc-meetup: #e51937; 268 | 269 | $bc-netflix: #b9070a; 270 | 271 | $bc-nokia: #183693; 272 | 273 | $bc-nvidia: #76b900; 274 | 275 | $bc-odnoklassniki: #ed812b; 276 | 277 | $bc-opera: #cc0f16; 278 | 279 | $bc-path: #e41f11; 280 | 281 | $bc-paypal-dark: #1e477a; 282 | 283 | $bc-paypal-dark-2: #3b7bbf; 284 | 285 | $bc-pinboard: #0000e6; 286 | 287 | $bc-pinterest: #c8232c; 288 | 289 | $bc-playstation: #665cbe; 290 | 291 | $bc-pocket: #ee4056; 292 | 293 | $bc-prezi: #318bff; 294 | 295 | $bc-pusha: #0f71b4; 296 | 297 | $bc-quora: #a82400; 298 | 299 | $bc-quote-fm: #66ceff; 300 | 301 | $bc-rdio: #008fd5; 302 | 303 | $bc-readability: #9c0000; 304 | 305 | $bc-red-hat: #cc0000; 306 | 307 | $bc-reddit: #cee2f8; 308 | 309 | $bc-reddit-2: #ff4500; 310 | 311 | $bc-resource: #7eb400; 312 | 313 | $bc-rockpack: #0ba6ab; 314 | 315 | $bc-roon: #62b0d9; 316 | 317 | $bc-rss: #ee802f; 318 | 319 | $bc-salesforce: #1798c1; 320 | 321 | $bc-samsung: #0c4da2; 322 | 323 | $bc-shopify: #96bf48; 324 | 325 | $bc-skype: #00aff0; 326 | 327 | $bc-smashing-magazine: #f0503a; 328 | 329 | $bc-snagajob: #f47a20; 330 | 331 | $bc-softonic: #008ace; 332 | 333 | $bc-soundcloud: #ff7700; 334 | 335 | $bc-space-box: #f86960; 336 | 337 | $bc-spotify: #81b71a; 338 | 339 | $bc-sprint: #fee100; 340 | 341 | $bc-squarespace: #121212; 342 | 343 | $bc-stackoverflow: #ef8236; 344 | 345 | $bc-staples: #cc0000; 346 | 347 | $bc-status-chart: #d7584f; 348 | 349 | $bc-stripe: #008cdd; 350 | 351 | $bc-studyblue: #00afe1; 352 | 353 | $bc-stumbleupon: #f74425; 354 | 355 | $bc-t-mobile: #ea0a8e; 356 | 357 | $bc-technorati: #40a800; 358 | 359 | $bc-the-next-web: #ef4423; 360 | 361 | $bc-treehouse: #5cb868; 362 | 363 | $bc-trello: #256a92; 364 | 365 | $bc-trulia: #5eab1f; 366 | 367 | $bc-tumblr: #34526f; 368 | 369 | $bc-twitch-tv: #6441a5; 370 | 371 | $bc-twitter: #55acee; 372 | 373 | $bc-typekit: #9aca3c; 374 | 375 | $bc-typo3: #ff8700; 376 | 377 | $bc-ubuntu: #dd4814; 378 | 379 | $bc-ustream: #3388ff; 380 | 381 | $bc-verizon: #ef1d1d; 382 | 383 | $bc-vimeo: #44bbff; 384 | 385 | $bc-vine: #00a478; 386 | 387 | $bc-virb: #06afd8; 388 | 389 | $bc-virgin-media: #cc0000; 390 | 391 | $bc-vkontakte: #45668e; 392 | 393 | $bc-wooga: #5b009c; 394 | 395 | $bc-wordpress: #21759b; 396 | 397 | $bc-wordpress-2: #d54e21; 398 | 399 | $bc-wordpress-3: #464646; 400 | 401 | $bc-wunderlist: #2b88d9; 402 | 403 | $bc-xbox: #52b043; 404 | 405 | $bc-xing: #126567; 406 | 407 | $bc-yahoo: #720e9e; 408 | 409 | $bc-yandex: #ffcc00; 410 | 411 | $bc-yelp: #c41200; 412 | 413 | $bc-youtube: #c4302b; 414 | 415 | $bc-zalongo: #5498dc; 416 | 417 | $bc-zendesk: #78a300; 418 | 419 | $bc-zerply: #9dcc7a; 420 | 421 | $bc-zootool: #5e8b1d; 422 | 423 | $bc-microsoft: #f65314; 424 | 425 | $bc-microsoft-2: #7cbb00; 426 | 427 | $bc-microsoft-3: #00a1f1; 428 | 429 | $bc-microsoft-4: #ffbb00; 430 | 431 | $bc-windows: #00bcf2; 432 | 433 | $bc-microsoft-office: #ea3e23; 434 | 435 | $bc-windows-phone: #68217a; 436 | 437 | $bc-bing: #ffb900; 438 | 439 | $bc-kiwipay: #00b0df; 440 | 441 | $bc-wordpress-com: #1e8cbe; 442 | 443 | $bc-django: #092e20; 444 | 445 | $bc-geocaching: #4a742c; 446 | 447 | $bc-utorrent: #00853f; 448 | 449 | $bc-arch-linux: #1793d1; 450 | 451 | $bc-arch-linux-2: #333333; 452 | 453 | $bc-gittip: #663300; 454 | 455 | $bc-gittip-2: #339966; 456 | 457 | $bc-flattr: #f67c1a; 458 | 459 | $bc-flattr-2: #338d11; 460 | 461 | $bc-hsbc: #db0011; 462 | 463 | $bc-zopim: #ff9d3b; 464 | 465 | $bc-bitbucket: #205081; 466 | 467 | $bc-strava: #fc4c02; 468 | -------------------------------------------------------------------------------- /dist/0.2.0/css/brand-colors.0.2.0.min.css: -------------------------------------------------------------------------------- 1 | .bc-4ormat{color:#fb0a2a}.bc-4ormat-bg{background-color:#fb0a2a}.bc-500px{color:#00aeef}.bc-500px-bg{background-color:#00aeef}.bc-about-me{color:#00405d}.bc-about-me-bg{background-color:#00405d}.bc-about-me-2{color:#062f3c}.bc-about-me-2-bg{background-color:#062f3c}.bc-about-me-3{color:#2b82ad}.bc-about-me-3-bg{background-color:#2b82ad}.bc-about-me-4{color:#cc7a00}.bc-about-me-4-bg{background-color:#cc7a00}.bc-about-me-5{color:#fc3}.bc-about-me-5-bg{background-color:#fc3}.bc-addvocate{color:#f32}.bc-addvocate-bg{background-color:#f32}.bc-adobe{color:red}.bc-adobe-bg{background-color:red}.bc-adobe-2{color:#fbb034}.bc-adobe-2-bg{background-color:#fbb034}.bc-adobe-3{color:#fd0}.bc-adobe-3-bg{background-color:#fd0}.bc-adobe-4{color:#c1d82f}.bc-adobe-4-bg{background-color:#c1d82f}.bc-adobe-5{color:#00a4e4}.bc-adobe-5-bg{background-color:#00a4e4}.bc-adobe-6{color:#8a7967}.bc-adobe-6-bg{background-color:#8a7967}.bc-adobe-7{color:#6a737b}.bc-adobe-7-bg{background-color:#6a737b}.bc-aim{color:#ffd900}.bc-aim-bg{background-color:#ffd900}.bc-amazon{color:#f90}.bc-amazon-bg{background-color:#f90}.bc-amazon-2{color:#146eb4}.bc-amazon-2-bg{background-color:#146eb4}.bc-android{color:#a4c639}.bc-android-bg{background-color:#a4c639}.bc-angies-list{color:#7fbb00}.bc-angies-list-bg{background-color:#7fbb00}.bc-aol{color:#ff0b00}.bc-aol-bg{background-color:#ff0b00}.bc-aol-2{color:#00c4ff}.bc-aol-2-bg{background-color:#00c4ff}.bc-asana{color:#1f8dd6}.bc-asana-bg{background-color:#1f8dd6}.bc-asana-2{color:#34ad00}.bc-asana-2-bg{background-color:#34ad00}.bc-atlassian{color:#036}.bc-atlassian-bg{background-color:#036}.bc-behance{color:#1769ff}.bc-behance-bg{background-color:#1769ff}.bc-big-cartel{color:#a0ac48}.bc-big-cartel-bg{background-color:#a0ac48}.bc-big-cartel-2{color:#70b29c}.bc-big-cartel-2-bg{background-color:#70b29c}.bc-bitly{color:#ee6123}.bc-bitly-bg{background-color:#ee6123}.bc-bitly-2{color:#61b3de}.bc-bitly-2-bg{background-color:#61b3de}.bc-blogger{color:#f57d00}.bc-blogger-bg{background-color:#f57d00}.bc-boeing{color:#0039a6}.bc-boeing-bg{background-color:#0039a6}.bc-booking-com{color:#003580}.bc-booking-com-bg{background-color:#003580}.bc-carbonmade{color:#613854}.bc-carbonmade-bg{background-color:#613854}.bc-cheddar{color:#ff7243}.bc-cheddar-bg{background-color:#ff7243}.bc-coca-cola{color:#ed1c16}.bc-coca-cola-bg{background-color:#ed1c16}.bc-code-school{color:#616f67}.bc-code-school-bg{background-color:#616f67}.bc-code-school-2{color:#c68143}.bc-code-school-2-bg{background-color:#c68143}.bc-creative-market{color:#8ba753}.bc-creative-market-bg{background-color:#8ba753}.bc-delicious{color:#39f}.bc-delicious-bg{background-color:#39f}.bc-delicious-2{color:#222}.bc-delicious-2-bg{background-color:#222}.bc-delicious-3{color:#eee}.bc-delicious-3-bg{background-color:#eee}.bc-dell{color:#0085c3}.bc-dell-bg{background-color:#0085c3}.bc-dell-2{color:#7ab800}.bc-dell-2-bg{background-color:#7ab800}.bc-dell-3{color:#f2af00}.bc-dell-3-bg{background-color:#f2af00}.bc-dell-4{color:#dc5034}.bc-dell-4-bg{background-color:#dc5034}.bc-dell-5{color:#ce1126}.bc-dell-5-bg{background-color:#ce1126}.bc-dell-6{color:#b7295a}.bc-dell-6-bg{background-color:#b7295a}.bc-dell-7{color:#6e2585}.bc-dell-7-bg{background-color:#6e2585}.bc-dell-8{color:#71c6c1}.bc-dell-8-bg{background-color:#71c6c1}.bc-dell-9{color:#5482ab}.bc-dell-9-bg{background-color:#5482ab}.bc-dell-10{color:#009bbb}.bc-dell-10-bg{background-color:#009bbb}.bc-dell-11{color:#444}.bc-dell-11-bg{background-color:#444}.bc-dell-12{color:#eee}.bc-dell-12-bg{background-color:#eee}.bc-designmoo{color:#e64b50}.bc-designmoo-bg{background-color:#e64b50}.bc-designmoo-2{color:#dbc65d}.bc-designmoo-2-bg{background-color:#dbc65d}.bc-deviantart{color:#4e6252}.bc-deviantart-bg{background-color:#4e6252}.bc-designer-news{color:#2d72d9}.bc-designer-news-bg{background-color:#2d72d9}.bc-devour{color:red}.bc-devour-bg{background-color:red}.bc-dewalt{color:#febd17}.bc-dewalt-bg{background-color:#febd17}.bc-disqus{color:#2e9fff}.bc-disqus-bg{background-color:#2e9fff}.bc-dribbble{color:#444}.bc-dribbble-bg{background-color:#444}.bc-dribbble-2{color:#ea4c89}.bc-dribbble-2-bg{background-color:#ea4c89}.bc-dribbble-3{color:#8aba56}.bc-dribbble-3-bg{background-color:#8aba56}.bc-dribbble-4{color:#f83}.bc-dribbble-4-bg{background-color:#f83}.bc-dribbble-5{color:#00b6e3}.bc-dribbble-5-bg{background-color:#00b6e3}.bc-dribbble-6{color:#9ba5a8}.bc-dribbble-6-bg{background-color:#9ba5a8}.bc-dropbox{color:#007ee5}.bc-dropbox-bg{background-color:#007ee5}.bc-dropbox-2{color:#7b8994}.bc-dropbox-2-bg{background-color:#7b8994}.bc-dropbox-3{color:#47525d}.bc-dropbox-3-bg{background-color:#47525d}.bc-dropbox-4{color:#3d464d}.bc-dropbox-4-bg{background-color:#3d464d}.bc-drupal{color:#0077c0}.bc-drupal-bg{background-color:#0077c0}.bc-drupal-2{color:#81ceff}.bc-drupal-2-bg{background-color:#81ceff}.bc-drupal-3{color:#00598e}.bc-drupal-3-bg{background-color:#00598e}.bc-dunked{color:#2f3238}.bc-dunked-bg{background-color:#2f3238}.bc-dunked-2{color:#3fc380}.bc-dunked-2-bg{background-color:#3fc380}.bc-ebay{color:#e53238}.bc-ebay-bg{background-color:#e53238}.bc-ebay-2{color:#0064d2}.bc-ebay-2-bg{background-color:#0064d2}.bc-ebay-3{color:#f5af02}.bc-ebay-3-bg{background-color:#f5af02}.bc-ebay-4{color:#86b817}.bc-ebay-4-bg{background-color:#86b817}.bc-engadget{color:#39c}.bc-engadget-bg{background-color:#39c}.bc-envato{color:#528036}.bc-envato-bg{background-color:#528036}.bc-etsy{color:#eb6d20}.bc-etsy-bg{background-color:#eb6d20}.bc-evernote{color:#5ba525}.bc-evernote-bg{background-color:#5ba525}.bc-fab-com{color:#dd0017}.bc-fab-com-bg{background-color:#dd0017}.bc-facebook{color:#3b5998}.bc-facebook-bg{background-color:#3b5998}.bc-firefox{color:#e66000}.bc-firefox-bg{background-color:#e66000}.bc-flickr{color:#0063dc}.bc-flickr-bg{background-color:#0063dc}.bc-flickr-2{color:#ff0084}.bc-flickr-2-bg{background-color:#ff0084}.bc-forrst{color:#5b9a68}.bc-forrst-bg{background-color:#5b9a68}.bc-foursquare{color:#25a0ca}.bc-foursquare-bg{background-color:#25a0ca}.bc-garmin{color:#007cc3}.bc-garmin-bg{background-color:#007cc3}.bc-getglue{color:#2d75a2}.bc-getglue-bg{background-color:#2d75a2}.bc-gimmebar{color:#f70078}.bc-gimmebar-bg{background-color:#f70078}.bc-github{color:#171515}.bc-github-bg{background-color:#171515}.bc-google-2{color:#db4437}.bc-google-2-bg{background-color:#db4437}.bc-google-3{color:#f4b400}.bc-google-3-bg{background-color:#f4b400}.bc-google-4{color:#0f9d58}.bc-google-4-bg{background-color:#0f9d58}.bc-google-5{color:#e7e6dd}.bc-google-5-bg{background-color:#e7e6dd}.bc-google{color:#dd4b39}.bc-google-bg{background-color:#dd4b39}.bc-grooveshark{color:#f77f00}.bc-grooveshark-bg{background-color:#f77f00}.bc-groupon{color:#82b548}.bc-groupon-bg{background-color:#82b548}.bc-hacker-news{color:#f60}.bc-hacker-news-bg{background-color:#f60}.bc-hellowallet{color:#0085ca}.bc-hellowallet-bg{background-color:#0085ca}.bc-heroku{color:#c7c5e6}.bc-heroku-bg{background-color:#c7c5e6}.bc-heroku-2{color:#6567a5}.bc-heroku-2-bg{background-color:#6567a5}.bc-hootsuite{color:#036}.bc-hootsuite-bg{background-color:#036}.bc-houzz{color:#73ba37}.bc-houzz-bg{background-color:#73ba37}.bc-hp{color:#0096d6}.bc-hp-bg{background-color:#0096d6}.bc-html5{color:#ec6231}.bc-html5-bg{background-color:#ec6231}.bc-hulu{color:#8cc83b}.bc-hulu-bg{background-color:#8cc83b}.bc-ibm{color:#003e6a}.bc-ibm-bg{background-color:#003e6a}.bc-ikea{color:#fc3}.bc-ikea-bg{background-color:#fc3}.bc-imdb{color:#f3ce13}.bc-imdb-bg{background-color:#f3ce13}.bc-instagram{color:#3f729b}.bc-instagram-bg{background-color:#3f729b}.bc-instapaper{color:#1c1c1c}.bc-instapaper-bg{background-color:#1c1c1c}.bc-intel{color:#0071c5}.bc-intel-bg{background-color:#0071c5}.bc-intuit{color:#365ebf}.bc-intuit-bg{background-color:#365ebf}.bc-kickstarter{color:#76cc1e}.bc-kickstarter-bg{background-color:#76cc1e}.bc-kippt{color:#e03500}.bc-kippt-bg{background-color:#e03500}.bc-kodery{color:#00af81}.bc-kodery-bg{background-color:#00af81}.bc-lastfm{color:#c3000d}.bc-lastfm-bg{background-color:#c3000d}.bc-linkedin{color:#0e76a8}.bc-linkedin-bg{background-color:#0e76a8}.bc-livestream{color:#cf0005}.bc-livestream-bg{background-color:#cf0005}.bc-lumo{color:#576396}.bc-lumo-bg{background-color:#576396}.bc-makita{color:#d82028}.bc-makita-bg{background-color:#d82028}.bc-makita-2{color:#29a0b7}.bc-makita-2-bg{background-color:#29a0b7}.bc-mixpanel{color:#a086d3}.bc-mixpanel-bg{background-color:#a086d3}.bc-meetup{color:#e51937}.bc-meetup-bg{background-color:#e51937}.bc-netflix{color:#b9070a}.bc-netflix-bg{background-color:#b9070a}.bc-nokia{color:#183693}.bc-nokia-bg{background-color:#183693}.bc-nvidia{color:#76b900}.bc-nvidia-bg{background-color:#76b900}.bc-odnoklassniki{color:#ed812b}.bc-odnoklassniki-bg{background-color:#ed812b}.bc-opera{color:#cc0f16}.bc-opera-bg{background-color:#cc0f16}.bc-path{color:#e41f11}.bc-path-bg{background-color:#e41f11}.bc-paypal-dark{color:#1e477a}.bc-paypal-dark-bg{background-color:#1e477a}.bc-paypal-dark-2{color:#3b7bbf}.bc-paypal-dark-2-bg{background-color:#3b7bbf}.bc-pinboard{color:#0000e6}.bc-pinboard-bg{background-color:#0000e6}.bc-pinterest{color:#c8232c}.bc-pinterest-bg{background-color:#c8232c}.bc-playstation{color:#665cbe}.bc-playstation-bg{background-color:#665cbe}.bc-pocket{color:#ee4056}.bc-pocket-bg{background-color:#ee4056}.bc-prezi{color:#318bff}.bc-prezi-bg{background-color:#318bff}.bc-pusha{color:#0f71b4}.bc-pusha-bg{background-color:#0f71b4}.bc-quora{color:#a82400}.bc-quora-bg{background-color:#a82400}.bc-quote-fm{color:#66ceff}.bc-quote-fm-bg{background-color:#66ceff}.bc-rdio{color:#008fd5}.bc-rdio-bg{background-color:#008fd5}.bc-readability{color:#9c0000}.bc-readability-bg{background-color:#9c0000}.bc-red-hat{color:#c00}.bc-red-hat-bg{background-color:#c00}.bc-reddit{color:#cee2f8}.bc-reddit-bg{background-color:#cee2f8}.bc-reddit-2{color:#ff4500}.bc-reddit-2-bg{background-color:#ff4500}.bc-resource{color:#7eb400}.bc-resource-bg{background-color:#7eb400}.bc-rockpack{color:#0ba6ab}.bc-rockpack-bg{background-color:#0ba6ab}.bc-roon{color:#62b0d9}.bc-roon-bg{background-color:#62b0d9}.bc-rss{color:#ee802f}.bc-rss-bg{background-color:#ee802f}.bc-salesforce{color:#1798c1}.bc-salesforce-bg{background-color:#1798c1}.bc-samsung{color:#0c4da2}.bc-samsung-bg{background-color:#0c4da2}.bc-shopify{color:#96bf48}.bc-shopify-bg{background-color:#96bf48}.bc-skype{color:#00aff0}.bc-skype-bg{background-color:#00aff0}.bc-smashing-magazine{color:#f0503a}.bc-smashing-magazine-bg{background-color:#f0503a}.bc-snagajob{color:#f47a20}.bc-snagajob-bg{background-color:#f47a20}.bc-softonic{color:#008ace}.bc-softonic-bg{background-color:#008ace}.bc-soundcloud{color:#f70}.bc-soundcloud-bg{background-color:#f70}.bc-space-box{color:#f86960}.bc-space-box-bg{background-color:#f86960}.bc-spotify{color:#81b71a}.bc-spotify-bg{background-color:#81b71a}.bc-sprint{color:#fee100}.bc-sprint-bg{background-color:#fee100}.bc-squarespace{color:#121212}.bc-squarespace-bg{background-color:#121212}.bc-stackoverflow{color:#ef8236}.bc-stackoverflow-bg{background-color:#ef8236}.bc-staples{color:#c00}.bc-staples-bg{background-color:#c00}.bc-status-chart{color:#d7584f}.bc-status-chart-bg{background-color:#d7584f}.bc-stripe{color:#008cdd}.bc-stripe-bg{background-color:#008cdd}.bc-studyblue{color:#00afe1}.bc-studyblue-bg{background-color:#00afe1}.bc-stumbleupon{color:#f74425}.bc-stumbleupon-bg{background-color:#f74425}.bc-t-mobile{color:#ea0a8e}.bc-t-mobile-bg{background-color:#ea0a8e}.bc-technorati{color:#40a800}.bc-technorati-bg{background-color:#40a800}.bc-the-next-web{color:#ef4423}.bc-the-next-web-bg{background-color:#ef4423}.bc-treehouse{color:#5cb868}.bc-treehouse-bg{background-color:#5cb868}.bc-trello{color:#256a92}.bc-trello-bg{background-color:#256a92}.bc-trulia{color:#5eab1f}.bc-trulia-bg{background-color:#5eab1f}.bc-tumblr{color:#34526f}.bc-tumblr-bg{background-color:#34526f}.bc-twitch-tv{color:#6441a5}.bc-twitch-tv-bg{background-color:#6441a5}.bc-twitter{color:#55acee}.bc-twitter-bg{background-color:#55acee}.bc-typekit{color:#9aca3c}.bc-typekit-bg{background-color:#9aca3c}.bc-typo3{color:#ff8700}.bc-typo3-bg{background-color:#ff8700}.bc-ubuntu{color:#dd4814}.bc-ubuntu-bg{background-color:#dd4814}.bc-ustream{color:#38f}.bc-ustream-bg{background-color:#38f}.bc-verizon{color:#ef1d1d}.bc-verizon-bg{background-color:#ef1d1d}.bc-vimeo{color:#4bf}.bc-vimeo-bg{background-color:#4bf}.bc-vine{color:#00a478}.bc-vine-bg{background-color:#00a478}.bc-virb{color:#06afd8}.bc-virb-bg{background-color:#06afd8}.bc-virgin-media{color:#c00}.bc-virgin-media-bg{background-color:#c00}.bc-vkontakte{color:#45668e}.bc-vkontakte-bg{background-color:#45668e}.bc-wooga{color:#5b009c}.bc-wooga-bg{background-color:#5b009c}.bc-wordpress{color:#21759b}.bc-wordpress-bg{background-color:#21759b}.bc-wordpress-2{color:#d54e21}.bc-wordpress-2-bg{background-color:#d54e21}.bc-wordpress-3{color:#464646}.bc-wordpress-3-bg{background-color:#464646}.bc-wunderlist{color:#2b88d9}.bc-wunderlist-bg{background-color:#2b88d9}.bc-xbox{color:#52b043}.bc-xbox-bg{background-color:#52b043}.bc-xing{color:#126567}.bc-xing-bg{background-color:#126567}.bc-yahoo{color:#720e9e}.bc-yahoo-bg{background-color:#720e9e}.bc-yandex{color:#fc0}.bc-yandex-bg{background-color:#fc0}.bc-yelp{color:#c41200}.bc-yelp-bg{background-color:#c41200}.bc-youtube{color:#c4302b}.bc-youtube-bg{background-color:#c4302b}.bc-zalongo{color:#5498dc}.bc-zalongo-bg{background-color:#5498dc}.bc-zendesk{color:#78a300}.bc-zendesk-bg{background-color:#78a300}.bc-zerply{color:#9dcc7a}.bc-zerply-bg{background-color:#9dcc7a}.bc-zootool{color:#5e8b1d}.bc-zootool-bg{background-color:#5e8b1d}.bc-microsoft{color:#f65314}.bc-microsoft-bg{background-color:#f65314}.bc-microsoft-2{color:#7cbb00}.bc-microsoft-2-bg{background-color:#7cbb00}.bc-microsoft-3{color:#00a1f1}.bc-microsoft-3-bg{background-color:#00a1f1}.bc-microsoft-4{color:#fb0}.bc-microsoft-4-bg{background-color:#fb0}.bc-windows{color:#00bcf2}.bc-windows-bg{background-color:#00bcf2}.bc-microsoft-office{color:#ea3e23}.bc-microsoft-office-bg{background-color:#ea3e23}.bc-windows-phone{color:#68217a}.bc-windows-phone-bg{background-color:#68217a}.bc-bing{color:#ffb900}.bc-bing-bg{background-color:#ffb900}.bc-kiwipay{color:#00b0df}.bc-kiwipay-bg{background-color:#00b0df}.bc-wordpress-com{color:#1e8cbe}.bc-wordpress-com-bg{background-color:#1e8cbe}.bc-django{color:#092e20}.bc-django-bg{background-color:#092e20}.bc-geocaching{color:#4a742c}.bc-geocaching-bg{background-color:#4a742c}.bc-utorrent{color:#00853f}.bc-utorrent-bg{background-color:#00853f}.bc-arch-linux{color:#1793d1}.bc-arch-linux-bg{background-color:#1793d1}.bc-arch-linux-2{color:#333}.bc-arch-linux-2-bg{background-color:#333}.bc-gittip{color:#630}.bc-gittip-bg{background-color:#630}.bc-gittip-2{color:#396}.bc-gittip-2-bg{background-color:#396}.bc-flattr{color:#f67c1a}.bc-flattr-bg{background-color:#f67c1a}.bc-flattr-2{color:#338d11}.bc-flattr-2-bg{background-color:#338d11}.bc-hsbc{color:#db0011}.bc-hsbc-bg{background-color:#db0011}.bc-zopim{color:#ff9d3b}.bc-zopim-bg{background-color:#ff9d3b}.bc-bitbucket{color:#205081}.bc-bitbucket-bg{background-color:#205081}.bc-strava{color:#fc4c02}.bc-strava-bg{background-color:#fc4c02} -------------------------------------------------------------------------------- /dist/0.2.0/less/brand-colors.0.2.0.less: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.2.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | @bc-4ormat: #fb0a2a;@bc-500px: #00aeef;@bc-about-me: #00405d;@bc-about-me-2: #062f3c;@bc-about-me-3: #2b82ad;@bc-about-me-4: #cc7a00;@bc-about-me-5: #ffcc33;@bc-addvocate: #ff3322;@bc-adobe: #ff0000;@bc-adobe-2: #fbb034;@bc-adobe-3: #ffdd00;@bc-adobe-4: #c1d82f;@bc-adobe-5: #00a4e4;@bc-adobe-6: #8a7967;@bc-adobe-7: #6a737b;@bc-aim: #ffd900;@bc-amazon: #ff9900;@bc-amazon-2: #146eb4;@bc-android: #a4c639;@bc-angies-list: #7fbb00;@bc-aol: #ff0b00;@bc-aol-2: #00c4ff;@bc-asana: #1f8dd6;@bc-asana-2: #34ad00;@bc-atlassian: #003366;@bc-behance: #1769ff;@bc-big-cartel: #a0ac48;@bc-big-cartel-2: #70b29c;@bc-bitly: #ee6123;@bc-bitly-2: #61b3de;@bc-blogger: #f57d00;@bc-boeing: #0039a6;@bc-booking-com: #003580;@bc-carbonmade: #613854;@bc-cheddar: #ff7243;@bc-coca-cola: #ed1c16;@bc-code-school: #616f67;@bc-code-school-2: #c68143;@bc-creative-market: #8ba753;@bc-delicious: #3399ff;@bc-delicious-2: #222222;@bc-delicious-3: #eeeeee;@bc-dell: #0085c3;@bc-dell-2: #7ab800;@bc-dell-3: #f2af00;@bc-dell-4: #dc5034;@bc-dell-5: #ce1126;@bc-dell-6: #b7295a;@bc-dell-7: #6e2585;@bc-dell-8: #71c6c1;@bc-dell-9: #5482ab;@bc-dell-10: #009bbb;@bc-dell-11: #444444;@bc-dell-12: #eeeeee;@bc-designmoo: #e64b50;@bc-designmoo-2: #dbc65d;@bc-deviantart: #4e6252;@bc-designer-news: #2d72d9;@bc-devour: #ff0000;@bc-dewalt: #febd17;@bc-disqus: #2e9fff;@bc-dribbble: #444444;@bc-dribbble-2: #ea4c89;@bc-dribbble-3: #8aba56;@bc-dribbble-4: #ff8833;@bc-dribbble-5: #00b6e3;@bc-dribbble-6: #9ba5a8;@bc-dropbox: #007ee5;@bc-dropbox-2: #7b8994;@bc-dropbox-3: #47525d;@bc-dropbox-4: #3d464d;@bc-drupal: #0077c0;@bc-drupal-2: #81ceff;@bc-drupal-3: #00598e;@bc-dunked: #2f3238;@bc-dunked-2: #3fc380;@bc-ebay: #e53238;@bc-ebay-2: #0064d2;@bc-ebay-3: #f5af02;@bc-ebay-4: #86b817;@bc-engadget: #3399cc;@bc-envato: #528036;@bc-etsy: #eb6d20;@bc-evernote: #5ba525;@bc-fab-com: #dd0017;@bc-facebook: #3b5998;@bc-firefox: #e66000;@bc-flickr: #0063dc;@bc-flickr-2: #ff0084;@bc-forrst: #5b9a68;@bc-foursquare: #25a0ca;@bc-garmin: #007cc3;@bc-getglue: #2d75a2;@bc-gimmebar: #f70078;@bc-github: #171515;@bc-google: #4285f4;@bc-google-2: #db4437;@bc-google-3: #f4b400;@bc-google-4: #0f9d58;@bc-google-5: #e7e6dd;@bc-google: #dd4b39;@bc-grooveshark: #f77f00;@bc-groupon: #82b548;@bc-hacker-news: #ff6600;@bc-hellowallet: #0085ca;@bc-heroku: #c7c5e6;@bc-heroku-2: #6567a5;@bc-hootsuite: #003366;@bc-houzz: #73ba37;@bc-hp: #0096d6;@bc-html5: #ec6231;@bc-hulu: #8cc83b;@bc-ibm: #003e6a;@bc-ikea: #ffcc33;@bc-imdb: #f3ce13;@bc-instagram: #3f729b;@bc-instapaper: #1c1c1c;@bc-intel: #0071c5;@bc-intuit: #365ebf;@bc-kickstarter: #76cc1e;@bc-kippt: #e03500;@bc-kodery: #00af81;@bc-lastfm: #c3000d;@bc-linkedin: #0e76a8;@bc-livestream: #cf0005;@bc-lumo: #576396;@bc-makita: #d82028;@bc-makita-2: #29a0b7;@bc-mixpanel: #a086d3;@bc-meetup: #e51937;@bc-netflix: #b9070a;@bc-nokia: #183693;@bc-nvidia: #76b900;@bc-odnoklassniki: #ed812b;@bc-opera: #cc0f16;@bc-path: #e41f11;@bc-paypal-dark: #1e477a;@bc-paypal-dark-2: #3b7bbf;@bc-pinboard: #0000e6;@bc-pinterest: #c8232c;@bc-playstation: #665cbe;@bc-pocket: #ee4056;@bc-prezi: #318bff;@bc-pusha: #0f71b4;@bc-quora: #a82400;@bc-quote-fm: #66ceff;@bc-rdio: #008fd5;@bc-readability: #9c0000;@bc-red-hat: #cc0000;@bc-reddit: #cee2f8;@bc-reddit-2: #ff4500;@bc-resource: #7eb400;@bc-rockpack: #0ba6ab;@bc-roon: #62b0d9;@bc-rss: #ee802f;@bc-salesforce: #1798c1;@bc-samsung: #0c4da2;@bc-shopify: #96bf48;@bc-skype: #00aff0;@bc-smashing-magazine: #f0503a;@bc-snagajob: #f47a20;@bc-softonic: #008ace;@bc-soundcloud: #ff7700;@bc-space-box: #f86960;@bc-spotify: #81b71a;@bc-sprint: #fee100;@bc-squarespace: #121212;@bc-stackoverflow: #ef8236;@bc-staples: #cc0000;@bc-status-chart: #d7584f;@bc-stripe: #008cdd;@bc-studyblue: #00afe1;@bc-stumbleupon: #f74425;@bc-t-mobile: #ea0a8e;@bc-technorati: #40a800;@bc-the-next-web: #ef4423;@bc-treehouse: #5cb868;@bc-trello: #256a92;@bc-trulia: #5eab1f;@bc-tumblr: #34526f;@bc-twitch-tv: #6441a5;@bc-twitter: #55acee;@bc-typekit: #9aca3c;@bc-typo3: #ff8700;@bc-ubuntu: #dd4814;@bc-ustream: #3388ff;@bc-verizon: #ef1d1d;@bc-vimeo: #44bbff;@bc-vine: #00a478;@bc-virb: #06afd8;@bc-virgin-media: #cc0000;@bc-vkontakte: #45668e;@bc-wooga: #5b009c;@bc-wordpress: #21759b;@bc-wordpress-2: #d54e21;@bc-wordpress-3: #464646;@bc-wunderlist: #2b88d9;@bc-xbox: #52b043;@bc-xing: #126567;@bc-yahoo: #720e9e;@bc-yandex: #ffcc00;@bc-yelp: #c41200;@bc-youtube: #c4302b;@bc-zalongo: #5498dc;@bc-zendesk: #78a300;@bc-zerply: #9dcc7a;@bc-zootool: #5e8b1d;@bc-microsoft: #f65314;@bc-microsoft-2: #7cbb00;@bc-microsoft-3: #00a1f1;@bc-microsoft-4: #ffbb00;@bc-windows: #00bcf2;@bc-microsoft-office: #ea3e23;@bc-windows-phone: #68217a;@bc-bing: #ffb900;@bc-kiwipay: #00b0df;@bc-wordpress-com: #1e8cbe;@bc-django: #092e20;@bc-geocaching: #4a742c;@bc-utorrent: #00853f;@bc-arch-linux: #1793d1;@bc-arch-linux-2: #333333;@bc-gittip: #663300;@bc-gittip-2: #339966;@bc-flattr: #f67c1a;@bc-flattr-2: #338d11;@bc-hsbc: #db0011;@bc-zopim: #ff9d3b;@bc-bitbucket: #205081;@bc-strava: #fc4c02; -------------------------------------------------------------------------------- /dist/0.2.0/sass/brand-colors.0.2.0.sass: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.2.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-amazon: #ff9900; 42 | 43 | $bc-amazon-2: #146eb4; 44 | 45 | $bc-android: #a4c639; 46 | 47 | $bc-angies-list: #7fbb00; 48 | 49 | $bc-aol: #ff0b00; 50 | 51 | $bc-aol-2: #00c4ff; 52 | 53 | $bc-asana: #1f8dd6; 54 | 55 | $bc-asana-2: #34ad00; 56 | 57 | $bc-atlassian: #003366; 58 | 59 | $bc-behance: #1769ff; 60 | 61 | $bc-big-cartel: #a0ac48; 62 | 63 | $bc-big-cartel-2: #70b29c; 64 | 65 | $bc-bitly: #ee6123; 66 | 67 | $bc-bitly-2: #61b3de; 68 | 69 | $bc-blogger: #f57d00; 70 | 71 | $bc-boeing: #0039a6; 72 | 73 | $bc-booking-com: #003580; 74 | 75 | $bc-carbonmade: #613854; 76 | 77 | $bc-cheddar: #ff7243; 78 | 79 | $bc-coca-cola: #ed1c16; 80 | 81 | $bc-code-school: #616f67; 82 | 83 | $bc-code-school-2: #c68143; 84 | 85 | $bc-creative-market: #8ba753; 86 | 87 | $bc-delicious: #3399ff; 88 | 89 | $bc-delicious-2: #222222; 90 | 91 | $bc-delicious-3: #eeeeee; 92 | 93 | $bc-dell: #0085c3; 94 | 95 | $bc-dell-2: #7ab800; 96 | 97 | $bc-dell-3: #f2af00; 98 | 99 | $bc-dell-4: #dc5034; 100 | 101 | $bc-dell-5: #ce1126; 102 | 103 | $bc-dell-6: #b7295a; 104 | 105 | $bc-dell-7: #6e2585; 106 | 107 | $bc-dell-8: #71c6c1; 108 | 109 | $bc-dell-9: #5482ab; 110 | 111 | $bc-dell-10: #009bbb; 112 | 113 | $bc-dell-11: #444444; 114 | 115 | $bc-dell-12: #eeeeee; 116 | 117 | $bc-designmoo: #e64b50; 118 | 119 | $bc-designmoo-2: #dbc65d; 120 | 121 | $bc-deviantart: #4e6252; 122 | 123 | $bc-designer-news: #2d72d9; 124 | 125 | $bc-devour: #ff0000; 126 | 127 | $bc-dewalt: #febd17; 128 | 129 | $bc-disqus: #2e9fff; 130 | 131 | $bc-dribbble: #444444; 132 | 133 | $bc-dribbble-2: #ea4c89; 134 | 135 | $bc-dribbble-3: #8aba56; 136 | 137 | $bc-dribbble-4: #ff8833; 138 | 139 | $bc-dribbble-5: #00b6e3; 140 | 141 | $bc-dribbble-6: #9ba5a8; 142 | 143 | $bc-dropbox: #007ee5; 144 | 145 | $bc-dropbox-2: #7b8994; 146 | 147 | $bc-dropbox-3: #47525d; 148 | 149 | $bc-dropbox-4: #3d464d; 150 | 151 | $bc-drupal: #0077c0; 152 | 153 | $bc-drupal-2: #81ceff; 154 | 155 | $bc-drupal-3: #00598e; 156 | 157 | $bc-dunked: #2f3238; 158 | 159 | $bc-dunked-2: #3fc380; 160 | 161 | $bc-ebay: #e53238; 162 | 163 | $bc-ebay-2: #0064d2; 164 | 165 | $bc-ebay-3: #f5af02; 166 | 167 | $bc-ebay-4: #86b817; 168 | 169 | $bc-engadget: #3399cc; 170 | 171 | $bc-envato: #528036; 172 | 173 | $bc-etsy: #eb6d20; 174 | 175 | $bc-evernote: #5ba525; 176 | 177 | $bc-fab-com: #dd0017; 178 | 179 | $bc-facebook: #3b5998; 180 | 181 | $bc-firefox: #e66000; 182 | 183 | $bc-flickr: #0063dc; 184 | 185 | $bc-flickr-2: #ff0084; 186 | 187 | $bc-forrst: #5b9a68; 188 | 189 | $bc-foursquare: #25a0ca; 190 | 191 | $bc-garmin: #007cc3; 192 | 193 | $bc-getglue: #2d75a2; 194 | 195 | $bc-gimmebar: #f70078; 196 | 197 | $bc-github: #171515; 198 | 199 | $bc-google: #4285f4; 200 | 201 | $bc-google-2: #db4437; 202 | 203 | $bc-google-3: #f4b400; 204 | 205 | $bc-google-4: #0f9d58; 206 | 207 | $bc-google-5: #e7e6dd; 208 | 209 | $bc-google: #dd4b39; 210 | 211 | $bc-grooveshark: #f77f00; 212 | 213 | $bc-groupon: #82b548; 214 | 215 | $bc-hacker-news: #ff6600; 216 | 217 | $bc-hellowallet: #0085ca; 218 | 219 | $bc-heroku: #c7c5e6; 220 | 221 | $bc-heroku-2: #6567a5; 222 | 223 | $bc-hootsuite: #003366; 224 | 225 | $bc-houzz: #73ba37; 226 | 227 | $bc-hp: #0096d6; 228 | 229 | $bc-html5: #ec6231; 230 | 231 | $bc-hulu: #8cc83b; 232 | 233 | $bc-ibm: #003e6a; 234 | 235 | $bc-ikea: #ffcc33; 236 | 237 | $bc-imdb: #f3ce13; 238 | 239 | $bc-instagram: #3f729b; 240 | 241 | $bc-instapaper: #1c1c1c; 242 | 243 | $bc-intel: #0071c5; 244 | 245 | $bc-intuit: #365ebf; 246 | 247 | $bc-kickstarter: #76cc1e; 248 | 249 | $bc-kippt: #e03500; 250 | 251 | $bc-kodery: #00af81; 252 | 253 | $bc-lastfm: #c3000d; 254 | 255 | $bc-linkedin: #0e76a8; 256 | 257 | $bc-livestream: #cf0005; 258 | 259 | $bc-lumo: #576396; 260 | 261 | $bc-makita: #d82028; 262 | 263 | $bc-makita-2: #29a0b7; 264 | 265 | $bc-mixpanel: #a086d3; 266 | 267 | $bc-meetup: #e51937; 268 | 269 | $bc-netflix: #b9070a; 270 | 271 | $bc-nokia: #183693; 272 | 273 | $bc-nvidia: #76b900; 274 | 275 | $bc-odnoklassniki: #ed812b; 276 | 277 | $bc-opera: #cc0f16; 278 | 279 | $bc-path: #e41f11; 280 | 281 | $bc-paypal-dark: #1e477a; 282 | 283 | $bc-paypal-dark-2: #3b7bbf; 284 | 285 | $bc-pinboard: #0000e6; 286 | 287 | $bc-pinterest: #c8232c; 288 | 289 | $bc-playstation: #665cbe; 290 | 291 | $bc-pocket: #ee4056; 292 | 293 | $bc-prezi: #318bff; 294 | 295 | $bc-pusha: #0f71b4; 296 | 297 | $bc-quora: #a82400; 298 | 299 | $bc-quote-fm: #66ceff; 300 | 301 | $bc-rdio: #008fd5; 302 | 303 | $bc-readability: #9c0000; 304 | 305 | $bc-red-hat: #cc0000; 306 | 307 | $bc-reddit: #cee2f8; 308 | 309 | $bc-reddit-2: #ff4500; 310 | 311 | $bc-resource: #7eb400; 312 | 313 | $bc-rockpack: #0ba6ab; 314 | 315 | $bc-roon: #62b0d9; 316 | 317 | $bc-rss: #ee802f; 318 | 319 | $bc-salesforce: #1798c1; 320 | 321 | $bc-samsung: #0c4da2; 322 | 323 | $bc-shopify: #96bf48; 324 | 325 | $bc-skype: #00aff0; 326 | 327 | $bc-smashing-magazine: #f0503a; 328 | 329 | $bc-snagajob: #f47a20; 330 | 331 | $bc-softonic: #008ace; 332 | 333 | $bc-soundcloud: #ff7700; 334 | 335 | $bc-space-box: #f86960; 336 | 337 | $bc-spotify: #81b71a; 338 | 339 | $bc-sprint: #fee100; 340 | 341 | $bc-squarespace: #121212; 342 | 343 | $bc-stackoverflow: #ef8236; 344 | 345 | $bc-staples: #cc0000; 346 | 347 | $bc-status-chart: #d7584f; 348 | 349 | $bc-stripe: #008cdd; 350 | 351 | $bc-studyblue: #00afe1; 352 | 353 | $bc-stumbleupon: #f74425; 354 | 355 | $bc-t-mobile: #ea0a8e; 356 | 357 | $bc-technorati: #40a800; 358 | 359 | $bc-the-next-web: #ef4423; 360 | 361 | $bc-treehouse: #5cb868; 362 | 363 | $bc-trello: #256a92; 364 | 365 | $bc-trulia: #5eab1f; 366 | 367 | $bc-tumblr: #34526f; 368 | 369 | $bc-twitch-tv: #6441a5; 370 | 371 | $bc-twitter: #55acee; 372 | 373 | $bc-typekit: #9aca3c; 374 | 375 | $bc-typo3: #ff8700; 376 | 377 | $bc-ubuntu: #dd4814; 378 | 379 | $bc-ustream: #3388ff; 380 | 381 | $bc-verizon: #ef1d1d; 382 | 383 | $bc-vimeo: #44bbff; 384 | 385 | $bc-vine: #00a478; 386 | 387 | $bc-virb: #06afd8; 388 | 389 | $bc-virgin-media: #cc0000; 390 | 391 | $bc-vkontakte: #45668e; 392 | 393 | $bc-wooga: #5b009c; 394 | 395 | $bc-wordpress: #21759b; 396 | 397 | $bc-wordpress-2: #d54e21; 398 | 399 | $bc-wordpress-3: #464646; 400 | 401 | $bc-wunderlist: #2b88d9; 402 | 403 | $bc-xbox: #52b043; 404 | 405 | $bc-xing: #126567; 406 | 407 | $bc-yahoo: #720e9e; 408 | 409 | $bc-yandex: #ffcc00; 410 | 411 | $bc-yelp: #c41200; 412 | 413 | $bc-youtube: #c4302b; 414 | 415 | $bc-zalongo: #5498dc; 416 | 417 | $bc-zendesk: #78a300; 418 | 419 | $bc-zerply: #9dcc7a; 420 | 421 | $bc-zootool: #5e8b1d; 422 | 423 | $bc-microsoft: #f65314; 424 | 425 | $bc-microsoft-2: #7cbb00; 426 | 427 | $bc-microsoft-3: #00a1f1; 428 | 429 | $bc-microsoft-4: #ffbb00; 430 | 431 | $bc-windows: #00bcf2; 432 | 433 | $bc-microsoft-office: #ea3e23; 434 | 435 | $bc-windows-phone: #68217a; 436 | 437 | $bc-bing: #ffb900; 438 | 439 | $bc-kiwipay: #00b0df; 440 | 441 | $bc-wordpress-com: #1e8cbe; 442 | 443 | $bc-django: #092e20; 444 | 445 | $bc-geocaching: #4a742c; 446 | 447 | $bc-utorrent: #00853f; 448 | 449 | $bc-arch-linux: #1793d1; 450 | 451 | $bc-arch-linux-2: #333333; 452 | 453 | $bc-gittip: #663300; 454 | 455 | $bc-gittip-2: #339966; 456 | 457 | $bc-flattr: #f67c1a; 458 | 459 | $bc-flattr-2: #338d11; 460 | 461 | $bc-hsbc: #db0011; 462 | 463 | $bc-zopim: #ff9d3b; 464 | 465 | $bc-bitbucket: #205081; 466 | 467 | $bc-strava: #fc4c02; 468 | -------------------------------------------------------------------------------- /dist/0.2.0/scss/brand-colors.0.2.0.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.2.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-amazon: #ff9900; 42 | 43 | $bc-amazon-2: #146eb4; 44 | 45 | $bc-android: #a4c639; 46 | 47 | $bc-angies-list: #7fbb00; 48 | 49 | $bc-aol: #ff0b00; 50 | 51 | $bc-aol-2: #00c4ff; 52 | 53 | $bc-asana: #1f8dd6; 54 | 55 | $bc-asana-2: #34ad00; 56 | 57 | $bc-atlassian: #003366; 58 | 59 | $bc-behance: #1769ff; 60 | 61 | $bc-big-cartel: #a0ac48; 62 | 63 | $bc-big-cartel-2: #70b29c; 64 | 65 | $bc-bitly: #ee6123; 66 | 67 | $bc-bitly-2: #61b3de; 68 | 69 | $bc-blogger: #f57d00; 70 | 71 | $bc-boeing: #0039a6; 72 | 73 | $bc-booking-com: #003580; 74 | 75 | $bc-carbonmade: #613854; 76 | 77 | $bc-cheddar: #ff7243; 78 | 79 | $bc-coca-cola: #ed1c16; 80 | 81 | $bc-code-school: #616f67; 82 | 83 | $bc-code-school-2: #c68143; 84 | 85 | $bc-creative-market: #8ba753; 86 | 87 | $bc-delicious: #3399ff; 88 | 89 | $bc-delicious-2: #222222; 90 | 91 | $bc-delicious-3: #eeeeee; 92 | 93 | $bc-dell: #0085c3; 94 | 95 | $bc-dell-2: #7ab800; 96 | 97 | $bc-dell-3: #f2af00; 98 | 99 | $bc-dell-4: #dc5034; 100 | 101 | $bc-dell-5: #ce1126; 102 | 103 | $bc-dell-6: #b7295a; 104 | 105 | $bc-dell-7: #6e2585; 106 | 107 | $bc-dell-8: #71c6c1; 108 | 109 | $bc-dell-9: #5482ab; 110 | 111 | $bc-dell-10: #009bbb; 112 | 113 | $bc-dell-11: #444444; 114 | 115 | $bc-dell-12: #eeeeee; 116 | 117 | $bc-designmoo: #e64b50; 118 | 119 | $bc-designmoo-2: #dbc65d; 120 | 121 | $bc-deviantart: #4e6252; 122 | 123 | $bc-designer-news: #2d72d9; 124 | 125 | $bc-devour: #ff0000; 126 | 127 | $bc-dewalt: #febd17; 128 | 129 | $bc-disqus: #2e9fff; 130 | 131 | $bc-dribbble: #444444; 132 | 133 | $bc-dribbble-2: #ea4c89; 134 | 135 | $bc-dribbble-3: #8aba56; 136 | 137 | $bc-dribbble-4: #ff8833; 138 | 139 | $bc-dribbble-5: #00b6e3; 140 | 141 | $bc-dribbble-6: #9ba5a8; 142 | 143 | $bc-dropbox: #007ee5; 144 | 145 | $bc-dropbox-2: #7b8994; 146 | 147 | $bc-dropbox-3: #47525d; 148 | 149 | $bc-dropbox-4: #3d464d; 150 | 151 | $bc-drupal: #0077c0; 152 | 153 | $bc-drupal-2: #81ceff; 154 | 155 | $bc-drupal-3: #00598e; 156 | 157 | $bc-dunked: #2f3238; 158 | 159 | $bc-dunked-2: #3fc380; 160 | 161 | $bc-ebay: #e53238; 162 | 163 | $bc-ebay-2: #0064d2; 164 | 165 | $bc-ebay-3: #f5af02; 166 | 167 | $bc-ebay-4: #86b817; 168 | 169 | $bc-engadget: #3399cc; 170 | 171 | $bc-envato: #528036; 172 | 173 | $bc-etsy: #eb6d20; 174 | 175 | $bc-evernote: #5ba525; 176 | 177 | $bc-fab-com: #dd0017; 178 | 179 | $bc-facebook: #3b5998; 180 | 181 | $bc-firefox: #e66000; 182 | 183 | $bc-flickr: #0063dc; 184 | 185 | $bc-flickr-2: #ff0084; 186 | 187 | $bc-forrst: #5b9a68; 188 | 189 | $bc-foursquare: #25a0ca; 190 | 191 | $bc-garmin: #007cc3; 192 | 193 | $bc-getglue: #2d75a2; 194 | 195 | $bc-gimmebar: #f70078; 196 | 197 | $bc-github: #171515; 198 | 199 | $bc-google: #4285f4; 200 | 201 | $bc-google-2: #db4437; 202 | 203 | $bc-google-3: #f4b400; 204 | 205 | $bc-google-4: #0f9d58; 206 | 207 | $bc-google-5: #e7e6dd; 208 | 209 | $bc-google: #dd4b39; 210 | 211 | $bc-grooveshark: #f77f00; 212 | 213 | $bc-groupon: #82b548; 214 | 215 | $bc-hacker-news: #ff6600; 216 | 217 | $bc-hellowallet: #0085ca; 218 | 219 | $bc-heroku: #c7c5e6; 220 | 221 | $bc-heroku-2: #6567a5; 222 | 223 | $bc-hootsuite: #003366; 224 | 225 | $bc-houzz: #73ba37; 226 | 227 | $bc-hp: #0096d6; 228 | 229 | $bc-html5: #ec6231; 230 | 231 | $bc-hulu: #8cc83b; 232 | 233 | $bc-ibm: #003e6a; 234 | 235 | $bc-ikea: #ffcc33; 236 | 237 | $bc-imdb: #f3ce13; 238 | 239 | $bc-instagram: #3f729b; 240 | 241 | $bc-instapaper: #1c1c1c; 242 | 243 | $bc-intel: #0071c5; 244 | 245 | $bc-intuit: #365ebf; 246 | 247 | $bc-kickstarter: #76cc1e; 248 | 249 | $bc-kippt: #e03500; 250 | 251 | $bc-kodery: #00af81; 252 | 253 | $bc-lastfm: #c3000d; 254 | 255 | $bc-linkedin: #0e76a8; 256 | 257 | $bc-livestream: #cf0005; 258 | 259 | $bc-lumo: #576396; 260 | 261 | $bc-makita: #d82028; 262 | 263 | $bc-makita-2: #29a0b7; 264 | 265 | $bc-mixpanel: #a086d3; 266 | 267 | $bc-meetup: #e51937; 268 | 269 | $bc-netflix: #b9070a; 270 | 271 | $bc-nokia: #183693; 272 | 273 | $bc-nvidia: #76b900; 274 | 275 | $bc-odnoklassniki: #ed812b; 276 | 277 | $bc-opera: #cc0f16; 278 | 279 | $bc-path: #e41f11; 280 | 281 | $bc-paypal-dark: #1e477a; 282 | 283 | $bc-paypal-dark-2: #3b7bbf; 284 | 285 | $bc-pinboard: #0000e6; 286 | 287 | $bc-pinterest: #c8232c; 288 | 289 | $bc-playstation: #665cbe; 290 | 291 | $bc-pocket: #ee4056; 292 | 293 | $bc-prezi: #318bff; 294 | 295 | $bc-pusha: #0f71b4; 296 | 297 | $bc-quora: #a82400; 298 | 299 | $bc-quote-fm: #66ceff; 300 | 301 | $bc-rdio: #008fd5; 302 | 303 | $bc-readability: #9c0000; 304 | 305 | $bc-red-hat: #cc0000; 306 | 307 | $bc-reddit: #cee2f8; 308 | 309 | $bc-reddit-2: #ff4500; 310 | 311 | $bc-resource: #7eb400; 312 | 313 | $bc-rockpack: #0ba6ab; 314 | 315 | $bc-roon: #62b0d9; 316 | 317 | $bc-rss: #ee802f; 318 | 319 | $bc-salesforce: #1798c1; 320 | 321 | $bc-samsung: #0c4da2; 322 | 323 | $bc-shopify: #96bf48; 324 | 325 | $bc-skype: #00aff0; 326 | 327 | $bc-smashing-magazine: #f0503a; 328 | 329 | $bc-snagajob: #f47a20; 330 | 331 | $bc-softonic: #008ace; 332 | 333 | $bc-soundcloud: #ff7700; 334 | 335 | $bc-space-box: #f86960; 336 | 337 | $bc-spotify: #81b71a; 338 | 339 | $bc-sprint: #fee100; 340 | 341 | $bc-squarespace: #121212; 342 | 343 | $bc-stackoverflow: #ef8236; 344 | 345 | $bc-staples: #cc0000; 346 | 347 | $bc-status-chart: #d7584f; 348 | 349 | $bc-stripe: #008cdd; 350 | 351 | $bc-studyblue: #00afe1; 352 | 353 | $bc-stumbleupon: #f74425; 354 | 355 | $bc-t-mobile: #ea0a8e; 356 | 357 | $bc-technorati: #40a800; 358 | 359 | $bc-the-next-web: #ef4423; 360 | 361 | $bc-treehouse: #5cb868; 362 | 363 | $bc-trello: #256a92; 364 | 365 | $bc-trulia: #5eab1f; 366 | 367 | $bc-tumblr: #34526f; 368 | 369 | $bc-twitch-tv: #6441a5; 370 | 371 | $bc-twitter: #55acee; 372 | 373 | $bc-typekit: #9aca3c; 374 | 375 | $bc-typo3: #ff8700; 376 | 377 | $bc-ubuntu: #dd4814; 378 | 379 | $bc-ustream: #3388ff; 380 | 381 | $bc-verizon: #ef1d1d; 382 | 383 | $bc-vimeo: #44bbff; 384 | 385 | $bc-vine: #00a478; 386 | 387 | $bc-virb: #06afd8; 388 | 389 | $bc-virgin-media: #cc0000; 390 | 391 | $bc-vkontakte: #45668e; 392 | 393 | $bc-wooga: #5b009c; 394 | 395 | $bc-wordpress: #21759b; 396 | 397 | $bc-wordpress-2: #d54e21; 398 | 399 | $bc-wordpress-3: #464646; 400 | 401 | $bc-wunderlist: #2b88d9; 402 | 403 | $bc-xbox: #52b043; 404 | 405 | $bc-xing: #126567; 406 | 407 | $bc-yahoo: #720e9e; 408 | 409 | $bc-yandex: #ffcc00; 410 | 411 | $bc-yelp: #c41200; 412 | 413 | $bc-youtube: #c4302b; 414 | 415 | $bc-zalongo: #5498dc; 416 | 417 | $bc-zendesk: #78a300; 418 | 419 | $bc-zerply: #9dcc7a; 420 | 421 | $bc-zootool: #5e8b1d; 422 | 423 | $bc-microsoft: #f65314; 424 | 425 | $bc-microsoft-2: #7cbb00; 426 | 427 | $bc-microsoft-3: #00a1f1; 428 | 429 | $bc-microsoft-4: #ffbb00; 430 | 431 | $bc-windows: #00bcf2; 432 | 433 | $bc-microsoft-office: #ea3e23; 434 | 435 | $bc-windows-phone: #68217a; 436 | 437 | $bc-bing: #ffb900; 438 | 439 | $bc-kiwipay: #00b0df; 440 | 441 | $bc-wordpress-com: #1e8cbe; 442 | 443 | $bc-django: #092e20; 444 | 445 | $bc-geocaching: #4a742c; 446 | 447 | $bc-utorrent: #00853f; 448 | 449 | $bc-arch-linux: #1793d1; 450 | 451 | $bc-arch-linux-2: #333333; 452 | 453 | $bc-gittip: #663300; 454 | 455 | $bc-gittip-2: #339966; 456 | 457 | $bc-flattr: #f67c1a; 458 | 459 | $bc-flattr-2: #338d11; 460 | 461 | $bc-hsbc: #db0011; 462 | 463 | $bc-zopim: #ff9d3b; 464 | 465 | $bc-bitbucket: #205081; 466 | 467 | $bc-strava: #fc4c02; 468 | -------------------------------------------------------------------------------- /dist/0.3.0/less/brand-colors.0.3.0.less: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.3.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | @bc-4ormat: #fb0a2a;@bc-500px: #00aeef;@bc-about-me: #00405d;@bc-about-me-2: #062f3c;@bc-about-me-3: #2b82ad;@bc-about-me-4: #cc7a00;@bc-about-me-5: #ffcc33;@bc-addvocate: #ff3322;@bc-adobe: #ff0000;@bc-adobe-2: #fbb034;@bc-adobe-3: #ffdd00;@bc-adobe-4: #c1d82f;@bc-adobe-5: #00a4e4;@bc-adobe-6: #8a7967;@bc-adobe-7: #6a737b;@bc-aim: #ffd900;@bc-amazon: #ff9900;@bc-amazon-2: #146eb4;@bc-android: #a4c639;@bc-angies-list: #7fbb00;@bc-aol: #ff0b00;@bc-aol-2: #00c4ff;@bc-asana: #1f8dd6;@bc-asana-2: #34ad00;@bc-atlassian: #003366;@bc-behance: #1769ff;@bc-big-cartel: #a0ac48;@bc-big-cartel-2: #70b29c;@bc-bitly: #ee6123;@bc-bitly-2: #61b3de;@bc-blogger: #f57d00;@bc-boeing: #0039a6;@bc-booking-com: #003580;@bc-carbonmade: #613854;@bc-cheddar: #ff7243;@bc-coca-cola: #ed1c16;@bc-code-school: #616f67;@bc-code-school-2: #c68143;@bc-creative-market: #8ba753;@bc-delicious: #3399ff;@bc-delicious-2: #222222;@bc-delicious-3: #eeeeee;@bc-dell: #0085c3;@bc-dell-2: #7ab800;@bc-dell-3: #f2af00;@bc-dell-4: #dc5034;@bc-dell-5: #ce1126;@bc-dell-6: #b7295a;@bc-dell-7: #6e2585;@bc-dell-8: #71c6c1;@bc-dell-9: #5482ab;@bc-dell-10: #009bbb;@bc-dell-11: #444444;@bc-dell-12: #eeeeee;@bc-designmoo: #e64b50;@bc-designmoo-2: #dbc65d;@bc-deviantart: #4e6252;@bc-designer-news: #2d72d9;@bc-devour: #ff0000;@bc-dewalt: #febd17;@bc-disqus: #2e9fff;@bc-dribbble: #444444;@bc-dribbble-2: #ea4c89;@bc-dribbble-3: #8aba56;@bc-dribbble-4: #ff8833;@bc-dribbble-5: #00b6e3;@bc-dribbble-6: #9ba5a8;@bc-dropbox: #007ee5;@bc-dropbox-2: #7b8994;@bc-dropbox-3: #47525d;@bc-dropbox-4: #3d464d;@bc-drupal: #0077c0;@bc-drupal-2: #81ceff;@bc-drupal-3: #00598e;@bc-dunked: #2f3238;@bc-dunked-2: #3fc380;@bc-ebay: #e53238;@bc-ebay-2: #0064d2;@bc-ebay-3: #f5af02;@bc-ebay-4: #86b817;@bc-engadget: #3399cc;@bc-envato: #528036;@bc-etsy: #eb6d20;@bc-evernote: #5ba525;@bc-fab-com: #dd0017;@bc-facebook: #3b5998;@bc-firefox: #e66000;@bc-flickr: #0063dc;@bc-flickr-2: #ff0084;@bc-forrst: #5b9a68;@bc-foursquare: #25a0ca;@bc-garmin: #007cc3;@bc-getglue: #2d75a2;@bc-gimmebar: #f70078;@bc-github: #171515;@bc-google: #4285f4;@bc-google-2: #db4437;@bc-google-3: #f4b400;@bc-google-4: #0f9d58;@bc-google-5: #e7e6dd;@bc-google: #dd4b39;@bc-grooveshark: #f77f00;@bc-groupon: #82b548;@bc-hacker-news: #ff6600;@bc-hellowallet: #0085ca;@bc-heroku: #c7c5e6;@bc-heroku-2: #6567a5;@bc-hootsuite: #003366;@bc-houzz: #73ba37;@bc-hp: #0096d6;@bc-html5: #ec6231;@bc-hulu: #8cc83b;@bc-ibm: #003e6a;@bc-ikea: #ffcc33;@bc-imdb: #f3ce13;@bc-instagram: #3f729b;@bc-instapaper: #1c1c1c;@bc-intel: #0071c5;@bc-intuit: #365ebf;@bc-kickstarter: #76cc1e;@bc-kippt: #e03500;@bc-kodery: #00af81;@bc-lastfm: #c3000d;@bc-linkedin: #0e76a8;@bc-livestream: #cf0005;@bc-lumo: #576396;@bc-makita: #d82028;@bc-makita-2: #29a0b7;@bc-mixpanel: #a086d3;@bc-meetup: #e51937;@bc-netflix: #b9070a;@bc-nokia: #183693;@bc-nvidia: #76b900;@bc-odnoklassniki: #ed812b;@bc-opera: #cc0f16;@bc-path: #e41f11;@bc-paypal-dark: #1e477a;@bc-paypal-dark-2: #3b7bbf;@bc-pinboard: #0000e6;@bc-pinterest: #c8232c;@bc-playstation: #665cbe;@bc-pocket: #ee4056;@bc-prezi: #318bff;@bc-pusha: #0f71b4;@bc-quora: #a82400;@bc-quote-fm: #66ceff;@bc-rdio: #008fd5;@bc-readability: #9c0000;@bc-red-hat: #cc0000;@bc-reddit: #cee2f8;@bc-reddit-2: #ff4500;@bc-resource: #7eb400;@bc-rockpack: #0ba6ab;@bc-roon: #62b0d9;@bc-rss: #ee802f;@bc-salesforce: #1798c1;@bc-samsung: #0c4da2;@bc-shopify: #96bf48;@bc-skype: #00aff0;@bc-smashing-magazine: #f0503a;@bc-snagajob: #f47a20;@bc-softonic: #008ace;@bc-soundcloud: #ff7700;@bc-space-box: #f86960;@bc-spotify: #81b71a;@bc-sprint: #fee100;@bc-squarespace: #121212;@bc-stackoverflow: #ef8236;@bc-staples: #cc0000;@bc-status-chart: #d7584f;@bc-stripe: #008cdd;@bc-studyblue: #00afe1;@bc-stumbleupon: #f74425;@bc-t-mobile: #ea0a8e;@bc-technorati: #40a800;@bc-the-next-web: #ef4423;@bc-treehouse: #5cb868;@bc-trello: #256a92;@bc-trulia: #5eab1f;@bc-tumblr: #34526f;@bc-twitch-tv: #6441a5;@bc-twitter: #55acee;@bc-typekit: #9aca3c;@bc-typo3: #ff8700;@bc-ubuntu: #dd4814;@bc-ustream: #3388ff;@bc-verizon: #ef1d1d;@bc-vimeo: #44bbff;@bc-vine: #00a478;@bc-virb: #06afd8;@bc-virgin-media: #cc0000;@bc-vkontakte: #45668e;@bc-wooga: #5b009c;@bc-wordpress: #21759b;@bc-wordpress-2: #d54e21;@bc-wordpress-3: #464646;@bc-wunderlist: #2b88d9;@bc-xbox: #52b043;@bc-xing: #126567;@bc-yahoo: #720e9e;@bc-yandex: #ffcc00;@bc-yelp: #c41200;@bc-youtube: #c4302b;@bc-zalongo: #5498dc;@bc-zendesk: #78a300;@bc-zerply: #9dcc7a;@bc-zootool: #5e8b1d;@bc-microsoft: #f65314;@bc-microsoft-2: #7cbb00;@bc-microsoft-3: #00a1f1;@bc-microsoft-4: #ffbb00;@bc-windows: #00bcf2;@bc-microsoft-office: #ea3e23;@bc-windows-phone: #68217a;@bc-bing: #ffb900;@bc-kiwipay: #00b0df;@bc-wordpress-com: #1e8cbe;@bc-django: #092e20;@bc-geocaching: #4a742c;@bc-utorrent: #00853f;@bc-arch-linux: #1793d1;@bc-arch-linux-2: #333333;@bc-gittip: #663300;@bc-gittip-2: #339966;@bc-flattr: #f67c1a;@bc-flattr-2: #338d11;@bc-hsbc: #db0011;@bc-zopim: #ff9d3b;@bc-bitbucket: #205081;@bc-strava: #fc4c02; -------------------------------------------------------------------------------- /dist/0.3.0/sass/brand-colors.0.3.0.sass: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.3.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-amazon: #ff9900; 42 | 43 | $bc-amazon-2: #146eb4; 44 | 45 | $bc-android: #a4c639; 46 | 47 | $bc-angies-list: #7fbb00; 48 | 49 | $bc-aol: #ff0b00; 50 | 51 | $bc-aol-2: #00c4ff; 52 | 53 | $bc-asana: #1f8dd6; 54 | 55 | $bc-asana-2: #34ad00; 56 | 57 | $bc-atlassian: #003366; 58 | 59 | $bc-behance: #1769ff; 60 | 61 | $bc-big-cartel: #a0ac48; 62 | 63 | $bc-big-cartel-2: #70b29c; 64 | 65 | $bc-bitly: #ee6123; 66 | 67 | $bc-bitly-2: #61b3de; 68 | 69 | $bc-blogger: #f57d00; 70 | 71 | $bc-boeing: #0039a6; 72 | 73 | $bc-booking-com: #003580; 74 | 75 | $bc-carbonmade: #613854; 76 | 77 | $bc-cheddar: #ff7243; 78 | 79 | $bc-coca-cola: #ed1c16; 80 | 81 | $bc-code-school: #616f67; 82 | 83 | $bc-code-school-2: #c68143; 84 | 85 | $bc-creative-market: #8ba753; 86 | 87 | $bc-delicious: #3399ff; 88 | 89 | $bc-delicious-2: #222222; 90 | 91 | $bc-delicious-3: #eeeeee; 92 | 93 | $bc-dell: #0085c3; 94 | 95 | $bc-dell-2: #7ab800; 96 | 97 | $bc-dell-3: #f2af00; 98 | 99 | $bc-dell-4: #dc5034; 100 | 101 | $bc-dell-5: #ce1126; 102 | 103 | $bc-dell-6: #b7295a; 104 | 105 | $bc-dell-7: #6e2585; 106 | 107 | $bc-dell-8: #71c6c1; 108 | 109 | $bc-dell-9: #5482ab; 110 | 111 | $bc-dell-10: #009bbb; 112 | 113 | $bc-dell-11: #444444; 114 | 115 | $bc-dell-12: #eeeeee; 116 | 117 | $bc-designmoo: #e64b50; 118 | 119 | $bc-designmoo-2: #dbc65d; 120 | 121 | $bc-deviantart: #4e6252; 122 | 123 | $bc-designer-news: #2d72d9; 124 | 125 | $bc-devour: #ff0000; 126 | 127 | $bc-dewalt: #febd17; 128 | 129 | $bc-disqus: #2e9fff; 130 | 131 | $bc-dribbble: #444444; 132 | 133 | $bc-dribbble-2: #ea4c89; 134 | 135 | $bc-dribbble-3: #8aba56; 136 | 137 | $bc-dribbble-4: #ff8833; 138 | 139 | $bc-dribbble-5: #00b6e3; 140 | 141 | $bc-dribbble-6: #9ba5a8; 142 | 143 | $bc-dropbox: #007ee5; 144 | 145 | $bc-dropbox-2: #7b8994; 146 | 147 | $bc-dropbox-3: #47525d; 148 | 149 | $bc-dropbox-4: #3d464d; 150 | 151 | $bc-drupal: #0077c0; 152 | 153 | $bc-drupal-2: #81ceff; 154 | 155 | $bc-drupal-3: #00598e; 156 | 157 | $bc-dunked: #2f3238; 158 | 159 | $bc-dunked-2: #3fc380; 160 | 161 | $bc-ebay: #e53238; 162 | 163 | $bc-ebay-2: #0064d2; 164 | 165 | $bc-ebay-3: #f5af02; 166 | 167 | $bc-ebay-4: #86b817; 168 | 169 | $bc-engadget: #3399cc; 170 | 171 | $bc-envato: #528036; 172 | 173 | $bc-etsy: #eb6d20; 174 | 175 | $bc-evernote: #5ba525; 176 | 177 | $bc-fab-com: #dd0017; 178 | 179 | $bc-facebook: #3b5998; 180 | 181 | $bc-firefox: #e66000; 182 | 183 | $bc-flickr: #0063dc; 184 | 185 | $bc-flickr-2: #ff0084; 186 | 187 | $bc-forrst: #5b9a68; 188 | 189 | $bc-foursquare: #25a0ca; 190 | 191 | $bc-garmin: #007cc3; 192 | 193 | $bc-getglue: #2d75a2; 194 | 195 | $bc-gimmebar: #f70078; 196 | 197 | $bc-github: #171515; 198 | 199 | $bc-google: #4285f4; 200 | 201 | $bc-google-2: #db4437; 202 | 203 | $bc-google-3: #f4b400; 204 | 205 | $bc-google-4: #0f9d58; 206 | 207 | $bc-google-5: #e7e6dd; 208 | 209 | $bc-google: #dd4b39; 210 | 211 | $bc-grooveshark: #f77f00; 212 | 213 | $bc-groupon: #82b548; 214 | 215 | $bc-hacker-news: #ff6600; 216 | 217 | $bc-hellowallet: #0085ca; 218 | 219 | $bc-heroku: #c7c5e6; 220 | 221 | $bc-heroku-2: #6567a5; 222 | 223 | $bc-hootsuite: #003366; 224 | 225 | $bc-houzz: #73ba37; 226 | 227 | $bc-hp: #0096d6; 228 | 229 | $bc-html5: #ec6231; 230 | 231 | $bc-hulu: #8cc83b; 232 | 233 | $bc-ibm: #003e6a; 234 | 235 | $bc-ikea: #ffcc33; 236 | 237 | $bc-imdb: #f3ce13; 238 | 239 | $bc-instagram: #3f729b; 240 | 241 | $bc-instapaper: #1c1c1c; 242 | 243 | $bc-intel: #0071c5; 244 | 245 | $bc-intuit: #365ebf; 246 | 247 | $bc-kickstarter: #76cc1e; 248 | 249 | $bc-kippt: #e03500; 250 | 251 | $bc-kodery: #00af81; 252 | 253 | $bc-lastfm: #c3000d; 254 | 255 | $bc-linkedin: #0e76a8; 256 | 257 | $bc-livestream: #cf0005; 258 | 259 | $bc-lumo: #576396; 260 | 261 | $bc-makita: #d82028; 262 | 263 | $bc-makita-2: #29a0b7; 264 | 265 | $bc-mixpanel: #a086d3; 266 | 267 | $bc-meetup: #e51937; 268 | 269 | $bc-netflix: #b9070a; 270 | 271 | $bc-nokia: #183693; 272 | 273 | $bc-nvidia: #76b900; 274 | 275 | $bc-odnoklassniki: #ed812b; 276 | 277 | $bc-opera: #cc0f16; 278 | 279 | $bc-path: #e41f11; 280 | 281 | $bc-paypal-dark: #1e477a; 282 | 283 | $bc-paypal-dark-2: #3b7bbf; 284 | 285 | $bc-pinboard: #0000e6; 286 | 287 | $bc-pinterest: #c8232c; 288 | 289 | $bc-playstation: #665cbe; 290 | 291 | $bc-pocket: #ee4056; 292 | 293 | $bc-prezi: #318bff; 294 | 295 | $bc-pusha: #0f71b4; 296 | 297 | $bc-quora: #a82400; 298 | 299 | $bc-quote-fm: #66ceff; 300 | 301 | $bc-rdio: #008fd5; 302 | 303 | $bc-readability: #9c0000; 304 | 305 | $bc-red-hat: #cc0000; 306 | 307 | $bc-reddit: #cee2f8; 308 | 309 | $bc-reddit-2: #ff4500; 310 | 311 | $bc-resource: #7eb400; 312 | 313 | $bc-rockpack: #0ba6ab; 314 | 315 | $bc-roon: #62b0d9; 316 | 317 | $bc-rss: #ee802f; 318 | 319 | $bc-salesforce: #1798c1; 320 | 321 | $bc-samsung: #0c4da2; 322 | 323 | $bc-shopify: #96bf48; 324 | 325 | $bc-skype: #00aff0; 326 | 327 | $bc-smashing-magazine: #f0503a; 328 | 329 | $bc-snagajob: #f47a20; 330 | 331 | $bc-softonic: #008ace; 332 | 333 | $bc-soundcloud: #ff7700; 334 | 335 | $bc-space-box: #f86960; 336 | 337 | $bc-spotify: #81b71a; 338 | 339 | $bc-sprint: #fee100; 340 | 341 | $bc-squarespace: #121212; 342 | 343 | $bc-stackoverflow: #ef8236; 344 | 345 | $bc-staples: #cc0000; 346 | 347 | $bc-status-chart: #d7584f; 348 | 349 | $bc-stripe: #008cdd; 350 | 351 | $bc-studyblue: #00afe1; 352 | 353 | $bc-stumbleupon: #f74425; 354 | 355 | $bc-t-mobile: #ea0a8e; 356 | 357 | $bc-technorati: #40a800; 358 | 359 | $bc-the-next-web: #ef4423; 360 | 361 | $bc-treehouse: #5cb868; 362 | 363 | $bc-trello: #256a92; 364 | 365 | $bc-trulia: #5eab1f; 366 | 367 | $bc-tumblr: #34526f; 368 | 369 | $bc-twitch-tv: #6441a5; 370 | 371 | $bc-twitter: #55acee; 372 | 373 | $bc-typekit: #9aca3c; 374 | 375 | $bc-typo3: #ff8700; 376 | 377 | $bc-ubuntu: #dd4814; 378 | 379 | $bc-ustream: #3388ff; 380 | 381 | $bc-verizon: #ef1d1d; 382 | 383 | $bc-vimeo: #44bbff; 384 | 385 | $bc-vine: #00a478; 386 | 387 | $bc-virb: #06afd8; 388 | 389 | $bc-virgin-media: #cc0000; 390 | 391 | $bc-vkontakte: #45668e; 392 | 393 | $bc-wooga: #5b009c; 394 | 395 | $bc-wordpress: #21759b; 396 | 397 | $bc-wordpress-2: #d54e21; 398 | 399 | $bc-wordpress-3: #464646; 400 | 401 | $bc-wunderlist: #2b88d9; 402 | 403 | $bc-xbox: #52b043; 404 | 405 | $bc-xing: #126567; 406 | 407 | $bc-yahoo: #720e9e; 408 | 409 | $bc-yandex: #ffcc00; 410 | 411 | $bc-yelp: #c41200; 412 | 413 | $bc-youtube: #c4302b; 414 | 415 | $bc-zalongo: #5498dc; 416 | 417 | $bc-zendesk: #78a300; 418 | 419 | $bc-zerply: #9dcc7a; 420 | 421 | $bc-zootool: #5e8b1d; 422 | 423 | $bc-microsoft: #f65314; 424 | 425 | $bc-microsoft-2: #7cbb00; 426 | 427 | $bc-microsoft-3: #00a1f1; 428 | 429 | $bc-microsoft-4: #ffbb00; 430 | 431 | $bc-windows: #00bcf2; 432 | 433 | $bc-microsoft-office: #ea3e23; 434 | 435 | $bc-windows-phone: #68217a; 436 | 437 | $bc-bing: #ffb900; 438 | 439 | $bc-kiwipay: #00b0df; 440 | 441 | $bc-wordpress-com: #1e8cbe; 442 | 443 | $bc-django: #092e20; 444 | 445 | $bc-geocaching: #4a742c; 446 | 447 | $bc-utorrent: #00853f; 448 | 449 | $bc-arch-linux: #1793d1; 450 | 451 | $bc-arch-linux-2: #333333; 452 | 453 | $bc-gittip: #663300; 454 | 455 | $bc-gittip-2: #339966; 456 | 457 | $bc-flattr: #f67c1a; 458 | 459 | $bc-flattr-2: #338d11; 460 | 461 | $bc-hsbc: #db0011; 462 | 463 | $bc-zopim: #ff9d3b; 464 | 465 | $bc-bitbucket: #205081; 466 | 467 | $bc-strava: #fc4c02; 468 | -------------------------------------------------------------------------------- /dist/0.3.0/scss/brand-colors.0.3.0.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.3.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-amazon: #ff9900; 42 | 43 | $bc-amazon-2: #146eb4; 44 | 45 | $bc-android: #a4c639; 46 | 47 | $bc-angies-list: #7fbb00; 48 | 49 | $bc-aol: #ff0b00; 50 | 51 | $bc-aol-2: #00c4ff; 52 | 53 | $bc-asana: #1f8dd6; 54 | 55 | $bc-asana-2: #34ad00; 56 | 57 | $bc-atlassian: #003366; 58 | 59 | $bc-behance: #1769ff; 60 | 61 | $bc-big-cartel: #a0ac48; 62 | 63 | $bc-big-cartel-2: #70b29c; 64 | 65 | $bc-bitly: #ee6123; 66 | 67 | $bc-bitly-2: #61b3de; 68 | 69 | $bc-blogger: #f57d00; 70 | 71 | $bc-boeing: #0039a6; 72 | 73 | $bc-booking-com: #003580; 74 | 75 | $bc-carbonmade: #613854; 76 | 77 | $bc-cheddar: #ff7243; 78 | 79 | $bc-coca-cola: #ed1c16; 80 | 81 | $bc-code-school: #616f67; 82 | 83 | $bc-code-school-2: #c68143; 84 | 85 | $bc-creative-market: #8ba753; 86 | 87 | $bc-delicious: #3399ff; 88 | 89 | $bc-delicious-2: #222222; 90 | 91 | $bc-delicious-3: #eeeeee; 92 | 93 | $bc-dell: #0085c3; 94 | 95 | $bc-dell-2: #7ab800; 96 | 97 | $bc-dell-3: #f2af00; 98 | 99 | $bc-dell-4: #dc5034; 100 | 101 | $bc-dell-5: #ce1126; 102 | 103 | $bc-dell-6: #b7295a; 104 | 105 | $bc-dell-7: #6e2585; 106 | 107 | $bc-dell-8: #71c6c1; 108 | 109 | $bc-dell-9: #5482ab; 110 | 111 | $bc-dell-10: #009bbb; 112 | 113 | $bc-dell-11: #444444; 114 | 115 | $bc-dell-12: #eeeeee; 116 | 117 | $bc-designmoo: #e64b50; 118 | 119 | $bc-designmoo-2: #dbc65d; 120 | 121 | $bc-deviantart: #4e6252; 122 | 123 | $bc-designer-news: #2d72d9; 124 | 125 | $bc-devour: #ff0000; 126 | 127 | $bc-dewalt: #febd17; 128 | 129 | $bc-disqus: #2e9fff; 130 | 131 | $bc-dribbble: #444444; 132 | 133 | $bc-dribbble-2: #ea4c89; 134 | 135 | $bc-dribbble-3: #8aba56; 136 | 137 | $bc-dribbble-4: #ff8833; 138 | 139 | $bc-dribbble-5: #00b6e3; 140 | 141 | $bc-dribbble-6: #9ba5a8; 142 | 143 | $bc-dropbox: #007ee5; 144 | 145 | $bc-dropbox-2: #7b8994; 146 | 147 | $bc-dropbox-3: #47525d; 148 | 149 | $bc-dropbox-4: #3d464d; 150 | 151 | $bc-drupal: #0077c0; 152 | 153 | $bc-drupal-2: #81ceff; 154 | 155 | $bc-drupal-3: #00598e; 156 | 157 | $bc-dunked: #2f3238; 158 | 159 | $bc-dunked-2: #3fc380; 160 | 161 | $bc-ebay: #e53238; 162 | 163 | $bc-ebay-2: #0064d2; 164 | 165 | $bc-ebay-3: #f5af02; 166 | 167 | $bc-ebay-4: #86b817; 168 | 169 | $bc-engadget: #3399cc; 170 | 171 | $bc-envato: #528036; 172 | 173 | $bc-etsy: #eb6d20; 174 | 175 | $bc-evernote: #5ba525; 176 | 177 | $bc-fab-com: #dd0017; 178 | 179 | $bc-facebook: #3b5998; 180 | 181 | $bc-firefox: #e66000; 182 | 183 | $bc-flickr: #0063dc; 184 | 185 | $bc-flickr-2: #ff0084; 186 | 187 | $bc-forrst: #5b9a68; 188 | 189 | $bc-foursquare: #25a0ca; 190 | 191 | $bc-garmin: #007cc3; 192 | 193 | $bc-getglue: #2d75a2; 194 | 195 | $bc-gimmebar: #f70078; 196 | 197 | $bc-github: #171515; 198 | 199 | $bc-google: #4285f4; 200 | 201 | $bc-google-2: #db4437; 202 | 203 | $bc-google-3: #f4b400; 204 | 205 | $bc-google-4: #0f9d58; 206 | 207 | $bc-google-5: #e7e6dd; 208 | 209 | $bc-google: #dd4b39; 210 | 211 | $bc-grooveshark: #f77f00; 212 | 213 | $bc-groupon: #82b548; 214 | 215 | $bc-hacker-news: #ff6600; 216 | 217 | $bc-hellowallet: #0085ca; 218 | 219 | $bc-heroku: #c7c5e6; 220 | 221 | $bc-heroku-2: #6567a5; 222 | 223 | $bc-hootsuite: #003366; 224 | 225 | $bc-houzz: #73ba37; 226 | 227 | $bc-hp: #0096d6; 228 | 229 | $bc-html5: #ec6231; 230 | 231 | $bc-hulu: #8cc83b; 232 | 233 | $bc-ibm: #003e6a; 234 | 235 | $bc-ikea: #ffcc33; 236 | 237 | $bc-imdb: #f3ce13; 238 | 239 | $bc-instagram: #3f729b; 240 | 241 | $bc-instapaper: #1c1c1c; 242 | 243 | $bc-intel: #0071c5; 244 | 245 | $bc-intuit: #365ebf; 246 | 247 | $bc-kickstarter: #76cc1e; 248 | 249 | $bc-kippt: #e03500; 250 | 251 | $bc-kodery: #00af81; 252 | 253 | $bc-lastfm: #c3000d; 254 | 255 | $bc-linkedin: #0e76a8; 256 | 257 | $bc-livestream: #cf0005; 258 | 259 | $bc-lumo: #576396; 260 | 261 | $bc-makita: #d82028; 262 | 263 | $bc-makita-2: #29a0b7; 264 | 265 | $bc-mixpanel: #a086d3; 266 | 267 | $bc-meetup: #e51937; 268 | 269 | $bc-netflix: #b9070a; 270 | 271 | $bc-nokia: #183693; 272 | 273 | $bc-nvidia: #76b900; 274 | 275 | $bc-odnoklassniki: #ed812b; 276 | 277 | $bc-opera: #cc0f16; 278 | 279 | $bc-path: #e41f11; 280 | 281 | $bc-paypal-dark: #1e477a; 282 | 283 | $bc-paypal-dark-2: #3b7bbf; 284 | 285 | $bc-pinboard: #0000e6; 286 | 287 | $bc-pinterest: #c8232c; 288 | 289 | $bc-playstation: #665cbe; 290 | 291 | $bc-pocket: #ee4056; 292 | 293 | $bc-prezi: #318bff; 294 | 295 | $bc-pusha: #0f71b4; 296 | 297 | $bc-quora: #a82400; 298 | 299 | $bc-quote-fm: #66ceff; 300 | 301 | $bc-rdio: #008fd5; 302 | 303 | $bc-readability: #9c0000; 304 | 305 | $bc-red-hat: #cc0000; 306 | 307 | $bc-reddit: #cee2f8; 308 | 309 | $bc-reddit-2: #ff4500; 310 | 311 | $bc-resource: #7eb400; 312 | 313 | $bc-rockpack: #0ba6ab; 314 | 315 | $bc-roon: #62b0d9; 316 | 317 | $bc-rss: #ee802f; 318 | 319 | $bc-salesforce: #1798c1; 320 | 321 | $bc-samsung: #0c4da2; 322 | 323 | $bc-shopify: #96bf48; 324 | 325 | $bc-skype: #00aff0; 326 | 327 | $bc-smashing-magazine: #f0503a; 328 | 329 | $bc-snagajob: #f47a20; 330 | 331 | $bc-softonic: #008ace; 332 | 333 | $bc-soundcloud: #ff7700; 334 | 335 | $bc-space-box: #f86960; 336 | 337 | $bc-spotify: #81b71a; 338 | 339 | $bc-sprint: #fee100; 340 | 341 | $bc-squarespace: #121212; 342 | 343 | $bc-stackoverflow: #ef8236; 344 | 345 | $bc-staples: #cc0000; 346 | 347 | $bc-status-chart: #d7584f; 348 | 349 | $bc-stripe: #008cdd; 350 | 351 | $bc-studyblue: #00afe1; 352 | 353 | $bc-stumbleupon: #f74425; 354 | 355 | $bc-t-mobile: #ea0a8e; 356 | 357 | $bc-technorati: #40a800; 358 | 359 | $bc-the-next-web: #ef4423; 360 | 361 | $bc-treehouse: #5cb868; 362 | 363 | $bc-trello: #256a92; 364 | 365 | $bc-trulia: #5eab1f; 366 | 367 | $bc-tumblr: #34526f; 368 | 369 | $bc-twitch-tv: #6441a5; 370 | 371 | $bc-twitter: #55acee; 372 | 373 | $bc-typekit: #9aca3c; 374 | 375 | $bc-typo3: #ff8700; 376 | 377 | $bc-ubuntu: #dd4814; 378 | 379 | $bc-ustream: #3388ff; 380 | 381 | $bc-verizon: #ef1d1d; 382 | 383 | $bc-vimeo: #44bbff; 384 | 385 | $bc-vine: #00a478; 386 | 387 | $bc-virb: #06afd8; 388 | 389 | $bc-virgin-media: #cc0000; 390 | 391 | $bc-vkontakte: #45668e; 392 | 393 | $bc-wooga: #5b009c; 394 | 395 | $bc-wordpress: #21759b; 396 | 397 | $bc-wordpress-2: #d54e21; 398 | 399 | $bc-wordpress-3: #464646; 400 | 401 | $bc-wunderlist: #2b88d9; 402 | 403 | $bc-xbox: #52b043; 404 | 405 | $bc-xing: #126567; 406 | 407 | $bc-yahoo: #720e9e; 408 | 409 | $bc-yandex: #ffcc00; 410 | 411 | $bc-yelp: #c41200; 412 | 413 | $bc-youtube: #c4302b; 414 | 415 | $bc-zalongo: #5498dc; 416 | 417 | $bc-zendesk: #78a300; 418 | 419 | $bc-zerply: #9dcc7a; 420 | 421 | $bc-zootool: #5e8b1d; 422 | 423 | $bc-microsoft: #f65314; 424 | 425 | $bc-microsoft-2: #7cbb00; 426 | 427 | $bc-microsoft-3: #00a1f1; 428 | 429 | $bc-microsoft-4: #ffbb00; 430 | 431 | $bc-windows: #00bcf2; 432 | 433 | $bc-microsoft-office: #ea3e23; 434 | 435 | $bc-windows-phone: #68217a; 436 | 437 | $bc-bing: #ffb900; 438 | 439 | $bc-kiwipay: #00b0df; 440 | 441 | $bc-wordpress-com: #1e8cbe; 442 | 443 | $bc-django: #092e20; 444 | 445 | $bc-geocaching: #4a742c; 446 | 447 | $bc-utorrent: #00853f; 448 | 449 | $bc-arch-linux: #1793d1; 450 | 451 | $bc-arch-linux-2: #333333; 452 | 453 | $bc-gittip: #663300; 454 | 455 | $bc-gittip-2: #339966; 456 | 457 | $bc-flattr: #f67c1a; 458 | 459 | $bc-flattr-2: #338d11; 460 | 461 | $bc-hsbc: #db0011; 462 | 463 | $bc-zopim: #ff9d3b; 464 | 465 | $bc-bitbucket: #205081; 466 | 467 | $bc-strava: #fc4c02; 468 | -------------------------------------------------------------------------------- /dist/0.3.0/stylus/brand-colors.0.3.0.styl: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.3.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat = #fb0a2a; 10 | 11 | $bc-500px = #00aeef; 12 | 13 | $bc-about-me = #00405d; 14 | 15 | $bc-about-me-2 = #062f3c; 16 | 17 | $bc-about-me-3 = #2b82ad; 18 | 19 | $bc-about-me-4 = #cc7a00; 20 | 21 | $bc-about-me-5 = #ffcc33; 22 | 23 | $bc-addvocate = #ff3322; 24 | 25 | $bc-adobe = #ff0000; 26 | 27 | $bc-adobe-2 = #fbb034; 28 | 29 | $bc-adobe-3 = #ffdd00; 30 | 31 | $bc-adobe-4 = #c1d82f; 32 | 33 | $bc-adobe-5 = #00a4e4; 34 | 35 | $bc-adobe-6 = #8a7967; 36 | 37 | $bc-adobe-7 = #6a737b; 38 | 39 | $bc-aim = #ffd900; 40 | 41 | $bc-amazon = #ff9900; 42 | 43 | $bc-amazon-2 = #146eb4; 44 | 45 | $bc-android = #a4c639; 46 | 47 | $bc-angies-list = #7fbb00; 48 | 49 | $bc-aol = #ff0b00; 50 | 51 | $bc-aol-2 = #00c4ff; 52 | 53 | $bc-asana = #1f8dd6; 54 | 55 | $bc-asana-2 = #34ad00; 56 | 57 | $bc-atlassian = #003366; 58 | 59 | $bc-behance = #1769ff; 60 | 61 | $bc-big-cartel = #a0ac48; 62 | 63 | $bc-big-cartel-2 = #70b29c; 64 | 65 | $bc-bitly = #ee6123; 66 | 67 | $bc-bitly-2 = #61b3de; 68 | 69 | $bc-blogger = #f57d00; 70 | 71 | $bc-boeing = #0039a6; 72 | 73 | $bc-booking-com = #003580; 74 | 75 | $bc-carbonmade = #613854; 76 | 77 | $bc-cheddar = #ff7243; 78 | 79 | $bc-coca-cola = #ed1c16; 80 | 81 | $bc-code-school = #616f67; 82 | 83 | $bc-code-school-2 = #c68143; 84 | 85 | $bc-creative-market = #8ba753; 86 | 87 | $bc-delicious = #3399ff; 88 | 89 | $bc-delicious-2 = #222222; 90 | 91 | $bc-delicious-3 = #eeeeee; 92 | 93 | $bc-dell = #0085c3; 94 | 95 | $bc-dell-2 = #7ab800; 96 | 97 | $bc-dell-3 = #f2af00; 98 | 99 | $bc-dell-4 = #dc5034; 100 | 101 | $bc-dell-5 = #ce1126; 102 | 103 | $bc-dell-6 = #b7295a; 104 | 105 | $bc-dell-7 = #6e2585; 106 | 107 | $bc-dell-8 = #71c6c1; 108 | 109 | $bc-dell-9 = #5482ab; 110 | 111 | $bc-dell-10 = #009bbb; 112 | 113 | $bc-dell-11 = #444444; 114 | 115 | $bc-dell-12 = #eeeeee; 116 | 117 | $bc-designmoo = #e64b50; 118 | 119 | $bc-designmoo-2 = #dbc65d; 120 | 121 | $bc-deviantart = #4e6252; 122 | 123 | $bc-designer-news = #2d72d9; 124 | 125 | $bc-devour = #ff0000; 126 | 127 | $bc-dewalt = #febd17; 128 | 129 | $bc-disqus = #2e9fff; 130 | 131 | $bc-dribbble = #444444; 132 | 133 | $bc-dribbble-2 = #ea4c89; 134 | 135 | $bc-dribbble-3 = #8aba56; 136 | 137 | $bc-dribbble-4 = #ff8833; 138 | 139 | $bc-dribbble-5 = #00b6e3; 140 | 141 | $bc-dribbble-6 = #9ba5a8; 142 | 143 | $bc-dropbox = #007ee5; 144 | 145 | $bc-dropbox-2 = #7b8994; 146 | 147 | $bc-dropbox-3 = #47525d; 148 | 149 | $bc-dropbox-4 = #3d464d; 150 | 151 | $bc-drupal = #0077c0; 152 | 153 | $bc-drupal-2 = #81ceff; 154 | 155 | $bc-drupal-3 = #00598e; 156 | 157 | $bc-dunked = #2f3238; 158 | 159 | $bc-dunked-2 = #3fc380; 160 | 161 | $bc-ebay = #e53238; 162 | 163 | $bc-ebay-2 = #0064d2; 164 | 165 | $bc-ebay-3 = #f5af02; 166 | 167 | $bc-ebay-4 = #86b817; 168 | 169 | $bc-engadget = #3399cc; 170 | 171 | $bc-envato = #528036; 172 | 173 | $bc-etsy = #eb6d20; 174 | 175 | $bc-evernote = #5ba525; 176 | 177 | $bc-fab-com = #dd0017; 178 | 179 | $bc-facebook = #3b5998; 180 | 181 | $bc-firefox = #e66000; 182 | 183 | $bc-flickr = #0063dc; 184 | 185 | $bc-flickr-2 = #ff0084; 186 | 187 | $bc-forrst = #5b9a68; 188 | 189 | $bc-foursquare = #25a0ca; 190 | 191 | $bc-garmin = #007cc3; 192 | 193 | $bc-getglue = #2d75a2; 194 | 195 | $bc-gimmebar = #f70078; 196 | 197 | $bc-github = #171515; 198 | 199 | $bc-google = #4285f4; 200 | 201 | $bc-google-2 = #db4437; 202 | 203 | $bc-google-3 = #f4b400; 204 | 205 | $bc-google-4 = #0f9d58; 206 | 207 | $bc-google-5 = #e7e6dd; 208 | 209 | $bc-google = #dd4b39; 210 | 211 | $bc-grooveshark = #f77f00; 212 | 213 | $bc-groupon = #82b548; 214 | 215 | $bc-hacker-news = #ff6600; 216 | 217 | $bc-hellowallet = #0085ca; 218 | 219 | $bc-heroku = #c7c5e6; 220 | 221 | $bc-heroku-2 = #6567a5; 222 | 223 | $bc-hootsuite = #003366; 224 | 225 | $bc-houzz = #73ba37; 226 | 227 | $bc-hp = #0096d6; 228 | 229 | $bc-html5 = #ec6231; 230 | 231 | $bc-hulu = #8cc83b; 232 | 233 | $bc-ibm = #003e6a; 234 | 235 | $bc-ikea = #ffcc33; 236 | 237 | $bc-imdb = #f3ce13; 238 | 239 | $bc-instagram = #3f729b; 240 | 241 | $bc-instapaper = #1c1c1c; 242 | 243 | $bc-intel = #0071c5; 244 | 245 | $bc-intuit = #365ebf; 246 | 247 | $bc-kickstarter = #76cc1e; 248 | 249 | $bc-kippt = #e03500; 250 | 251 | $bc-kodery = #00af81; 252 | 253 | $bc-lastfm = #c3000d; 254 | 255 | $bc-linkedin = #0e76a8; 256 | 257 | $bc-livestream = #cf0005; 258 | 259 | $bc-lumo = #576396; 260 | 261 | $bc-makita = #d82028; 262 | 263 | $bc-makita-2 = #29a0b7; 264 | 265 | $bc-mixpanel = #a086d3; 266 | 267 | $bc-meetup = #e51937; 268 | 269 | $bc-netflix = #b9070a; 270 | 271 | $bc-nokia = #183693; 272 | 273 | $bc-nvidia = #76b900; 274 | 275 | $bc-odnoklassniki = #ed812b; 276 | 277 | $bc-opera = #cc0f16; 278 | 279 | $bc-path = #e41f11; 280 | 281 | $bc-paypal-dark = #1e477a; 282 | 283 | $bc-paypal-dark-2 = #3b7bbf; 284 | 285 | $bc-pinboard = #0000e6; 286 | 287 | $bc-pinterest = #c8232c; 288 | 289 | $bc-playstation = #665cbe; 290 | 291 | $bc-pocket = #ee4056; 292 | 293 | $bc-prezi = #318bff; 294 | 295 | $bc-pusha = #0f71b4; 296 | 297 | $bc-quora = #a82400; 298 | 299 | $bc-quote-fm = #66ceff; 300 | 301 | $bc-rdio = #008fd5; 302 | 303 | $bc-readability = #9c0000; 304 | 305 | $bc-red-hat = #cc0000; 306 | 307 | $bc-reddit = #cee2f8; 308 | 309 | $bc-reddit-2 = #ff4500; 310 | 311 | $bc-resource = #7eb400; 312 | 313 | $bc-rockpack = #0ba6ab; 314 | 315 | $bc-roon = #62b0d9; 316 | 317 | $bc-rss = #ee802f; 318 | 319 | $bc-salesforce = #1798c1; 320 | 321 | $bc-samsung = #0c4da2; 322 | 323 | $bc-shopify = #96bf48; 324 | 325 | $bc-skype = #00aff0; 326 | 327 | $bc-smashing-magazine = #f0503a; 328 | 329 | $bc-snagajob = #f47a20; 330 | 331 | $bc-softonic = #008ace; 332 | 333 | $bc-soundcloud = #ff7700; 334 | 335 | $bc-space-box = #f86960; 336 | 337 | $bc-spotify = #81b71a; 338 | 339 | $bc-sprint = #fee100; 340 | 341 | $bc-squarespace = #121212; 342 | 343 | $bc-stackoverflow = #ef8236; 344 | 345 | $bc-staples = #cc0000; 346 | 347 | $bc-status-chart = #d7584f; 348 | 349 | $bc-stripe = #008cdd; 350 | 351 | $bc-studyblue = #00afe1; 352 | 353 | $bc-stumbleupon = #f74425; 354 | 355 | $bc-t-mobile = #ea0a8e; 356 | 357 | $bc-technorati = #40a800; 358 | 359 | $bc-the-next-web = #ef4423; 360 | 361 | $bc-treehouse = #5cb868; 362 | 363 | $bc-trello = #256a92; 364 | 365 | $bc-trulia = #5eab1f; 366 | 367 | $bc-tumblr = #34526f; 368 | 369 | $bc-twitch-tv = #6441a5; 370 | 371 | $bc-twitter = #55acee; 372 | 373 | $bc-typekit = #9aca3c; 374 | 375 | $bc-typo3 = #ff8700; 376 | 377 | $bc-ubuntu = #dd4814; 378 | 379 | $bc-ustream = #3388ff; 380 | 381 | $bc-verizon = #ef1d1d; 382 | 383 | $bc-vimeo = #44bbff; 384 | 385 | $bc-vine = #00a478; 386 | 387 | $bc-virb = #06afd8; 388 | 389 | $bc-virgin-media = #cc0000; 390 | 391 | $bc-vkontakte = #45668e; 392 | 393 | $bc-wooga = #5b009c; 394 | 395 | $bc-wordpress = #21759b; 396 | 397 | $bc-wordpress-2 = #d54e21; 398 | 399 | $bc-wordpress-3 = #464646; 400 | 401 | $bc-wunderlist = #2b88d9; 402 | 403 | $bc-xbox = #52b043; 404 | 405 | $bc-xing = #126567; 406 | 407 | $bc-yahoo = #720e9e; 408 | 409 | $bc-yandex = #ffcc00; 410 | 411 | $bc-yelp = #c41200; 412 | 413 | $bc-youtube = #c4302b; 414 | 415 | $bc-zalongo = #5498dc; 416 | 417 | $bc-zendesk = #78a300; 418 | 419 | $bc-zerply = #9dcc7a; 420 | 421 | $bc-zootool = #5e8b1d; 422 | 423 | $bc-microsoft = #f65314; 424 | 425 | $bc-microsoft-2 = #7cbb00; 426 | 427 | $bc-microsoft-3 = #00a1f1; 428 | 429 | $bc-microsoft-4 = #ffbb00; 430 | 431 | $bc-windows = #00bcf2; 432 | 433 | $bc-microsoft-office = #ea3e23; 434 | 435 | $bc-windows-phone = #68217a; 436 | 437 | $bc-bing = #ffb900; 438 | 439 | $bc-kiwipay = #00b0df; 440 | 441 | $bc-wordpress-com = #1e8cbe; 442 | 443 | $bc-django = #092e20; 444 | 445 | $bc-geocaching = #4a742c; 446 | 447 | $bc-utorrent = #00853f; 448 | 449 | $bc-arch-linux = #1793d1; 450 | 451 | $bc-arch-linux-2 = #333333; 452 | 453 | $bc-gittip = #663300; 454 | 455 | $bc-gittip-2 = #339966; 456 | 457 | $bc-flattr = #f67c1a; 458 | 459 | $bc-flattr-2 = #338d11; 460 | 461 | $bc-hsbc = #db0011; 462 | 463 | $bc-zopim = #ff9d3b; 464 | 465 | $bc-bitbucket = #205081; 466 | 467 | $bc-strava = #fc4c02; 468 | -------------------------------------------------------------------------------- /dist/0.5.0/less/brand-colors.0.5.0.less: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.5.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | @bc-4ormat: #fb0a2a;@bc-500px: #00aeef;@bc-about-me: #00405d;@bc-about-me-2: #062f3c;@bc-about-me-3: #2b82ad;@bc-about-me-4: #cc7a00;@bc-about-me-5: #ffcc33;@bc-addvocate: #ff3322;@bc-adobe: #ff0000;@bc-adobe-2: #fbb034;@bc-adobe-3: #ffdd00;@bc-adobe-4: #c1d82f;@bc-adobe-5: #00a4e4;@bc-adobe-6: #8a7967;@bc-adobe-7: #6a737b;@bc-aim: #ffd900;@bc-amazon: #ff9900;@bc-amazon-2: #146eb4;@bc-android: #a4c639;@bc-angies-list: #7fbb00;@bc-aol: #ff0b00;@bc-aol-2: #00c4ff;@bc-asana: #1f8dd6;@bc-asana-2: #34ad00;@bc-atlassian: #003366;@bc-behance: #1769ff;@bc-big-cartel: #a0ac48;@bc-big-cartel-2: #70b29c;@bc-bitly: #ee6123;@bc-bitly-2: #61b3de;@bc-blogger: #f57d00;@bc-boeing: #0039a6;@bc-booking-com: #003580;@bc-carbonmade: #613854;@bc-cheddar: #ff7243;@bc-coca-cola: #ed1c16;@bc-code-school: #616f67;@bc-code-school-2: #c68143;@bc-creative-market: #8ba753;@bc-delicious: #3399ff;@bc-delicious-2: #222222;@bc-delicious-3: #eeeeee;@bc-dell: #0085c3;@bc-dell-2: #7ab800;@bc-dell-3: #f2af00;@bc-dell-4: #dc5034;@bc-dell-5: #ce1126;@bc-dell-6: #b7295a;@bc-dell-7: #6e2585;@bc-dell-8: #71c6c1;@bc-dell-9: #5482ab;@bc-dell-10: #009bbb;@bc-dell-11: #444444;@bc-dell-12: #eeeeee;@bc-designmoo: #e64b50;@bc-designmoo-2: #dbc65d;@bc-deviantart: #4e6252;@bc-designer-news: #2d72d9;@bc-devour: #ff0000;@bc-dewalt: #febd17;@bc-disqus: #2e9fff;@bc-dribbble: #444444;@bc-dribbble-2: #ea4c89;@bc-dribbble-3: #8aba56;@bc-dribbble-4: #ff8833;@bc-dribbble-5: #00b6e3;@bc-dribbble-6: #9ba5a8;@bc-dropbox: #007ee5;@bc-dropbox-2: #7b8994;@bc-dropbox-3: #47525d;@bc-dropbox-4: #3d464d;@bc-drupal: #0077c0;@bc-drupal-2: #81ceff;@bc-drupal-3: #00598e;@bc-dunked: #2f3238;@bc-dunked-2: #3fc380;@bc-ebay: #e53238;@bc-ebay-2: #0064d2;@bc-ebay-3: #f5af02;@bc-ebay-4: #86b817;@bc-engadget: #3399cc;@bc-envato: #528036;@bc-etsy: #eb6d20;@bc-evernote: #5ba525;@bc-fab-com: #dd0017;@bc-facebook: #3b5998;@bc-firefox: #e66000;@bc-flickr: #0063dc;@bc-flickr-2: #ff0084;@bc-forrst: #5b9a68;@bc-foursquare: #F94877;@bc-garmin: #007cc3;@bc-getglue: #2d75a2;@bc-gimmebar: #f70078;@bc-github: #171515;@bc-google: #4285f4;@bc-google-2: #db4437;@bc-google-3: #f4b400;@bc-google-4: #0f9d58;@bc-google-5: #e7e6dd;@bc-googleplus: #dd4b39;@bc-grooveshark: #f77f00;@bc-groupon: #82b548;@bc-hacker-news: #ff6600;@bc-hellowallet: #0085ca;@bc-heroku: #c7c5e6;@bc-heroku-2: #6567a5;@bc-hootsuite: #003366;@bc-houzz: #73ba37;@bc-hp: #0096d6;@bc-html5: #ec6231;@bc-hulu: #8cc83b;@bc-ibm: #003e6a;@bc-ikea: #ffcc33;@bc-imdb: #f3ce13;@bc-imgur: #85bf25;@bc-instagram: #3f729b;@bc-instapaper: #1c1c1c;@bc-intel: #0071c5;@bc-intuit: #365ebf;@bc-kickstarter: #76cc1e;@bc-kippt: #e03500;@bc-kodery: #00af81;@bc-lastfm: #c3000d;@bc-linkedin: #007bb6;@bc-livestream: #cf0005;@bc-lumo: #576396;@bc-makita: #d82028;@bc-makita-2: #29a0b7;@bc-mixpanel: #a086d3;@bc-meetup: #e51937;@bc-netflix: #b9070a;@bc-nokia: #183693;@bc-nvidia: #76b900;@bc-odnoklassniki: #ed812b;@bc-opera: #cc0f16;@bc-path: #e41f11;@bc-paypal-dark: #1e477a;@bc-paypal-dark-2: #3b7bbf;@bc-pinboard: #0000e6;@bc-pinterest: #cc2127;@bc-playstation: #665cbe;@bc-pocket: #ee4056;@bc-prezi: #318bff;@bc-pusha: #0f71b4;@bc-quora: #a82400;@bc-quote-fm: #66ceff;@bc-rdio: #008fd5;@bc-readability: #9c0000;@bc-red-hat: #cc0000;@bc-reddit: #cee2f8;@bc-reddit-2: #ff4500;@bc-resource: #7eb400;@bc-rockpack: #0ba6ab;@bc-roon: #62b0d9;@bc-rss: #ee802f;@bc-salesforce: #1798c1;@bc-samsung: #0c4da2;@bc-shopify: #96bf48;@bc-skype: #00aff0;@bc-slack: #6fcbdc;@bc-slack-2: #e9a821;@bc-slack-3: #e11664;@bc-slack-4: #3fba91;@bc-smashing-magazine: #f0503a;@bc-snagajob: #f47a20;@bc-softonic: #008ace;@bc-soundcloud: #ff7700;@bc-space-box: #f86960;@bc-spotify: #81b71a;@bc-sprint: #fee100;@bc-squarespace: #121212;@bc-stackoverflow: #ef8236;@bc-staples: #cc0000;@bc-status-chart: #d7584f;@bc-stripe: #008cdd;@bc-studyblue: #00afe1;@bc-stumbleupon: #f74425;@bc-swarm: #fd9627;@bc-t-mobile: #ea0a8e;@bc-technorati: #40a800;@bc-the-next-web: #ef4423;@bc-treehouse: #5cb868;@bc-trello: #256a92;@bc-trulia: #5eab1f;@bc-tumblr: #35465c;@bc-twitch-tv: #6441a5;@bc-twitter: #55acee;@bc-typekit: #9aca3c;@bc-typo3: #ff8700;@bc-ubuntu: #dd4814;@bc-ustream: #3388ff;@bc-verizon: #ef1d1d;@bc-vimeo: #44bbff;@bc-vine: #00a478;@bc-virb: #06afd8;@bc-virgin-media: #cc0000;@bc-vkontakte: #45668e;@bc-wolfram-alpha: #f68d1e;@bc-wooga: #5b009c;@bc-wordpress: #21759b;@bc-wordpress-2: #d54e21;@bc-wordpress-3: #464646;@bc-wunderlist: #2b88d9;@bc-xbox: #52b043;@bc-xing: #126567;@bc-yahoo: #720e9e;@bc-yandex: #ffcc00;@bc-yelp: #c41200;@bc-youtube: #cd201f;@bc-zalongo: #5498dc;@bc-zendesk: #78a300;@bc-zerply: #9dcc7a;@bc-zootool: #5e8b1d;@bc-microsoft: #f65314;@bc-microsoft-2: #7cbb00;@bc-microsoft-3: #00a1f1;@bc-microsoft-4: #ffbb00;@bc-windows: #00bcf2;@bc-microsoft-office: #ea3e23;@bc-windows-phone: #68217a;@bc-bing: #ffb900;@bc-kiwipay: #00b0df;@bc-wordpress-com: #1e8cbe;@bc-django: #092e20;@bc-geocaching: #4a742c;@bc-utorrent: #00853f;@bc-arch-linux: #1793d1;@bc-arch-linux-2: #333333;@bc-gittip: #663300;@bc-gittip-2: #339966;@bc-flattr: #f67c1a;@bc-flattr-2: #338d11;@bc-hsbc: #db0011;@bc-zopim: #ff9d3b;@bc-bitbucket: #205081;@bc-strava: #fc4c02;@bc-mic: #21c1ff; -------------------------------------------------------------------------------- /dist/0.5.0/sass/brand-colors.0.5.0.sass: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.5.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-amazon: #ff9900; 42 | 43 | $bc-amazon-2: #146eb4; 44 | 45 | $bc-android: #a4c639; 46 | 47 | $bc-angies-list: #7fbb00; 48 | 49 | $bc-aol: #ff0b00; 50 | 51 | $bc-aol-2: #00c4ff; 52 | 53 | $bc-asana: #1f8dd6; 54 | 55 | $bc-asana-2: #34ad00; 56 | 57 | $bc-atlassian: #003366; 58 | 59 | $bc-behance: #1769ff; 60 | 61 | $bc-big-cartel: #a0ac48; 62 | 63 | $bc-big-cartel-2: #70b29c; 64 | 65 | $bc-bitly: #ee6123; 66 | 67 | $bc-bitly-2: #61b3de; 68 | 69 | $bc-blogger: #f57d00; 70 | 71 | $bc-boeing: #0039a6; 72 | 73 | $bc-booking-com: #003580; 74 | 75 | $bc-carbonmade: #613854; 76 | 77 | $bc-cheddar: #ff7243; 78 | 79 | $bc-coca-cola: #ed1c16; 80 | 81 | $bc-code-school: #616f67; 82 | 83 | $bc-code-school-2: #c68143; 84 | 85 | $bc-creative-market: #8ba753; 86 | 87 | $bc-delicious: #3399ff; 88 | 89 | $bc-delicious-2: #222222; 90 | 91 | $bc-delicious-3: #eeeeee; 92 | 93 | $bc-dell: #0085c3; 94 | 95 | $bc-dell-2: #7ab800; 96 | 97 | $bc-dell-3: #f2af00; 98 | 99 | $bc-dell-4: #dc5034; 100 | 101 | $bc-dell-5: #ce1126; 102 | 103 | $bc-dell-6: #b7295a; 104 | 105 | $bc-dell-7: #6e2585; 106 | 107 | $bc-dell-8: #71c6c1; 108 | 109 | $bc-dell-9: #5482ab; 110 | 111 | $bc-dell-10: #009bbb; 112 | 113 | $bc-dell-11: #444444; 114 | 115 | $bc-dell-12: #eeeeee; 116 | 117 | $bc-designmoo: #e64b50; 118 | 119 | $bc-designmoo-2: #dbc65d; 120 | 121 | $bc-deviantart: #4e6252; 122 | 123 | $bc-designer-news: #2d72d9; 124 | 125 | $bc-devour: #ff0000; 126 | 127 | $bc-dewalt: #febd17; 128 | 129 | $bc-disqus: #2e9fff; 130 | 131 | $bc-dribbble: #444444; 132 | 133 | $bc-dribbble-2: #ea4c89; 134 | 135 | $bc-dribbble-3: #8aba56; 136 | 137 | $bc-dribbble-4: #ff8833; 138 | 139 | $bc-dribbble-5: #00b6e3; 140 | 141 | $bc-dribbble-6: #9ba5a8; 142 | 143 | $bc-dropbox: #007ee5; 144 | 145 | $bc-dropbox-2: #7b8994; 146 | 147 | $bc-dropbox-3: #47525d; 148 | 149 | $bc-dropbox-4: #3d464d; 150 | 151 | $bc-drupal: #0077c0; 152 | 153 | $bc-drupal-2: #81ceff; 154 | 155 | $bc-drupal-3: #00598e; 156 | 157 | $bc-dunked: #2f3238; 158 | 159 | $bc-dunked-2: #3fc380; 160 | 161 | $bc-ebay: #e53238; 162 | 163 | $bc-ebay-2: #0064d2; 164 | 165 | $bc-ebay-3: #f5af02; 166 | 167 | $bc-ebay-4: #86b817; 168 | 169 | $bc-engadget: #3399cc; 170 | 171 | $bc-envato: #528036; 172 | 173 | $bc-etsy: #eb6d20; 174 | 175 | $bc-evernote: #5ba525; 176 | 177 | $bc-fab-com: #dd0017; 178 | 179 | $bc-facebook: #3b5998; 180 | 181 | $bc-firefox: #e66000; 182 | 183 | $bc-flickr: #0063dc; 184 | 185 | $bc-flickr-2: #ff0084; 186 | 187 | $bc-forrst: #5b9a68; 188 | 189 | $bc-foursquare: #F94877; 190 | 191 | $bc-garmin: #007cc3; 192 | 193 | $bc-getglue: #2d75a2; 194 | 195 | $bc-gimmebar: #f70078; 196 | 197 | $bc-github: #171515; 198 | 199 | $bc-google: #4285f4; 200 | 201 | $bc-google-2: #db4437; 202 | 203 | $bc-google-3: #f4b400; 204 | 205 | $bc-google-4: #0f9d58; 206 | 207 | $bc-google-5: #e7e6dd; 208 | 209 | $bc-googleplus: #dd4b39; 210 | 211 | $bc-grooveshark: #f77f00; 212 | 213 | $bc-groupon: #82b548; 214 | 215 | $bc-hacker-news: #ff6600; 216 | 217 | $bc-hellowallet: #0085ca; 218 | 219 | $bc-heroku: #c7c5e6; 220 | 221 | $bc-heroku-2: #6567a5; 222 | 223 | $bc-hootsuite: #003366; 224 | 225 | $bc-houzz: #73ba37; 226 | 227 | $bc-hp: #0096d6; 228 | 229 | $bc-html5: #ec6231; 230 | 231 | $bc-hulu: #8cc83b; 232 | 233 | $bc-ibm: #003e6a; 234 | 235 | $bc-ikea: #ffcc33; 236 | 237 | $bc-imdb: #f3ce13; 238 | 239 | $bc-imgur: #85bf25; 240 | 241 | $bc-instagram: #3f729b; 242 | 243 | $bc-instapaper: #1c1c1c; 244 | 245 | $bc-intel: #0071c5; 246 | 247 | $bc-intuit: #365ebf; 248 | 249 | $bc-kickstarter: #76cc1e; 250 | 251 | $bc-kippt: #e03500; 252 | 253 | $bc-kodery: #00af81; 254 | 255 | $bc-lastfm: #c3000d; 256 | 257 | $bc-linkedin: #007bb6; 258 | 259 | $bc-livestream: #cf0005; 260 | 261 | $bc-lumo: #576396; 262 | 263 | $bc-makita: #d82028; 264 | 265 | $bc-makita-2: #29a0b7; 266 | 267 | $bc-mixpanel: #a086d3; 268 | 269 | $bc-meetup: #e51937; 270 | 271 | $bc-netflix: #b9070a; 272 | 273 | $bc-nokia: #183693; 274 | 275 | $bc-nvidia: #76b900; 276 | 277 | $bc-odnoklassniki: #ed812b; 278 | 279 | $bc-opera: #cc0f16; 280 | 281 | $bc-path: #e41f11; 282 | 283 | $bc-paypal-dark: #1e477a; 284 | 285 | $bc-paypal-dark-2: #3b7bbf; 286 | 287 | $bc-pinboard: #0000e6; 288 | 289 | $bc-pinterest: #cc2127; 290 | 291 | $bc-playstation: #665cbe; 292 | 293 | $bc-pocket: #ee4056; 294 | 295 | $bc-prezi: #318bff; 296 | 297 | $bc-pusha: #0f71b4; 298 | 299 | $bc-quora: #a82400; 300 | 301 | $bc-quote-fm: #66ceff; 302 | 303 | $bc-rdio: #008fd5; 304 | 305 | $bc-readability: #9c0000; 306 | 307 | $bc-red-hat: #cc0000; 308 | 309 | $bc-reddit: #cee2f8; 310 | 311 | $bc-reddit-2: #ff4500; 312 | 313 | $bc-resource: #7eb400; 314 | 315 | $bc-rockpack: #0ba6ab; 316 | 317 | $bc-roon: #62b0d9; 318 | 319 | $bc-rss: #ee802f; 320 | 321 | $bc-salesforce: #1798c1; 322 | 323 | $bc-samsung: #0c4da2; 324 | 325 | $bc-shopify: #96bf48; 326 | 327 | $bc-skype: #00aff0; 328 | 329 | $bc-slack: #6fcbdc; 330 | 331 | $bc-slack-2: #e9a821; 332 | 333 | $bc-slack-3: #e11664; 334 | 335 | $bc-slack-4: #3fba91; 336 | 337 | $bc-smashing-magazine: #f0503a; 338 | 339 | $bc-snagajob: #f47a20; 340 | 341 | $bc-softonic: #008ace; 342 | 343 | $bc-soundcloud: #ff7700; 344 | 345 | $bc-space-box: #f86960; 346 | 347 | $bc-spotify: #81b71a; 348 | 349 | $bc-sprint: #fee100; 350 | 351 | $bc-squarespace: #121212; 352 | 353 | $bc-stackoverflow: #ef8236; 354 | 355 | $bc-staples: #cc0000; 356 | 357 | $bc-status-chart: #d7584f; 358 | 359 | $bc-stripe: #008cdd; 360 | 361 | $bc-studyblue: #00afe1; 362 | 363 | $bc-stumbleupon: #f74425; 364 | 365 | $bc-swarm: #fd9627; 366 | 367 | $bc-t-mobile: #ea0a8e; 368 | 369 | $bc-technorati: #40a800; 370 | 371 | $bc-the-next-web: #ef4423; 372 | 373 | $bc-treehouse: #5cb868; 374 | 375 | $bc-trello: #256a92; 376 | 377 | $bc-trulia: #5eab1f; 378 | 379 | $bc-tumblr: #35465c; 380 | 381 | $bc-twitch-tv: #6441a5; 382 | 383 | $bc-twitter: #55acee; 384 | 385 | $bc-typekit: #9aca3c; 386 | 387 | $bc-typo3: #ff8700; 388 | 389 | $bc-ubuntu: #dd4814; 390 | 391 | $bc-ustream: #3388ff; 392 | 393 | $bc-verizon: #ef1d1d; 394 | 395 | $bc-vimeo: #44bbff; 396 | 397 | $bc-vine: #00a478; 398 | 399 | $bc-virb: #06afd8; 400 | 401 | $bc-virgin-media: #cc0000; 402 | 403 | $bc-vkontakte: #45668e; 404 | 405 | $bc-wolfram-alpha: #f68d1e; 406 | 407 | $bc-wooga: #5b009c; 408 | 409 | $bc-wordpress: #21759b; 410 | 411 | $bc-wordpress-2: #d54e21; 412 | 413 | $bc-wordpress-3: #464646; 414 | 415 | $bc-wunderlist: #2b88d9; 416 | 417 | $bc-xbox: #52b043; 418 | 419 | $bc-xing: #126567; 420 | 421 | $bc-yahoo: #720e9e; 422 | 423 | $bc-yandex: #ffcc00; 424 | 425 | $bc-yelp: #c41200; 426 | 427 | $bc-youtube: #cd201f; 428 | 429 | $bc-zalongo: #5498dc; 430 | 431 | $bc-zendesk: #78a300; 432 | 433 | $bc-zerply: #9dcc7a; 434 | 435 | $bc-zootool: #5e8b1d; 436 | 437 | $bc-microsoft: #f65314; 438 | 439 | $bc-microsoft-2: #7cbb00; 440 | 441 | $bc-microsoft-3: #00a1f1; 442 | 443 | $bc-microsoft-4: #ffbb00; 444 | 445 | $bc-windows: #00bcf2; 446 | 447 | $bc-microsoft-office: #ea3e23; 448 | 449 | $bc-windows-phone: #68217a; 450 | 451 | $bc-bing: #ffb900; 452 | 453 | $bc-kiwipay: #00b0df; 454 | 455 | $bc-wordpress-com: #1e8cbe; 456 | 457 | $bc-django: #092e20; 458 | 459 | $bc-geocaching: #4a742c; 460 | 461 | $bc-utorrent: #00853f; 462 | 463 | $bc-arch-linux: #1793d1; 464 | 465 | $bc-arch-linux-2: #333333; 466 | 467 | $bc-gittip: #663300; 468 | 469 | $bc-gittip-2: #339966; 470 | 471 | $bc-flattr: #f67c1a; 472 | 473 | $bc-flattr-2: #338d11; 474 | 475 | $bc-hsbc: #db0011; 476 | 477 | $bc-zopim: #ff9d3b; 478 | 479 | $bc-bitbucket: #205081; 480 | 481 | $bc-strava: #fc4c02; 482 | 483 | $bc-mic: #21c1ff; 484 | -------------------------------------------------------------------------------- /dist/0.5.0/scss/brand-colors.0.5.0.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.5.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-amazon: #ff9900; 42 | 43 | $bc-amazon-2: #146eb4; 44 | 45 | $bc-android: #a4c639; 46 | 47 | $bc-angies-list: #7fbb00; 48 | 49 | $bc-aol: #ff0b00; 50 | 51 | $bc-aol-2: #00c4ff; 52 | 53 | $bc-asana: #1f8dd6; 54 | 55 | $bc-asana-2: #34ad00; 56 | 57 | $bc-atlassian: #003366; 58 | 59 | $bc-behance: #1769ff; 60 | 61 | $bc-big-cartel: #a0ac48; 62 | 63 | $bc-big-cartel-2: #70b29c; 64 | 65 | $bc-bitly: #ee6123; 66 | 67 | $bc-bitly-2: #61b3de; 68 | 69 | $bc-blogger: #f57d00; 70 | 71 | $bc-boeing: #0039a6; 72 | 73 | $bc-booking-com: #003580; 74 | 75 | $bc-carbonmade: #613854; 76 | 77 | $bc-cheddar: #ff7243; 78 | 79 | $bc-coca-cola: #ed1c16; 80 | 81 | $bc-code-school: #616f67; 82 | 83 | $bc-code-school-2: #c68143; 84 | 85 | $bc-creative-market: #8ba753; 86 | 87 | $bc-delicious: #3399ff; 88 | 89 | $bc-delicious-2: #222222; 90 | 91 | $bc-delicious-3: #eeeeee; 92 | 93 | $bc-dell: #0085c3; 94 | 95 | $bc-dell-2: #7ab800; 96 | 97 | $bc-dell-3: #f2af00; 98 | 99 | $bc-dell-4: #dc5034; 100 | 101 | $bc-dell-5: #ce1126; 102 | 103 | $bc-dell-6: #b7295a; 104 | 105 | $bc-dell-7: #6e2585; 106 | 107 | $bc-dell-8: #71c6c1; 108 | 109 | $bc-dell-9: #5482ab; 110 | 111 | $bc-dell-10: #009bbb; 112 | 113 | $bc-dell-11: #444444; 114 | 115 | $bc-dell-12: #eeeeee; 116 | 117 | $bc-designmoo: #e64b50; 118 | 119 | $bc-designmoo-2: #dbc65d; 120 | 121 | $bc-deviantart: #4e6252; 122 | 123 | $bc-designer-news: #2d72d9; 124 | 125 | $bc-devour: #ff0000; 126 | 127 | $bc-dewalt: #febd17; 128 | 129 | $bc-disqus: #2e9fff; 130 | 131 | $bc-dribbble: #444444; 132 | 133 | $bc-dribbble-2: #ea4c89; 134 | 135 | $bc-dribbble-3: #8aba56; 136 | 137 | $bc-dribbble-4: #ff8833; 138 | 139 | $bc-dribbble-5: #00b6e3; 140 | 141 | $bc-dribbble-6: #9ba5a8; 142 | 143 | $bc-dropbox: #007ee5; 144 | 145 | $bc-dropbox-2: #7b8994; 146 | 147 | $bc-dropbox-3: #47525d; 148 | 149 | $bc-dropbox-4: #3d464d; 150 | 151 | $bc-drupal: #0077c0; 152 | 153 | $bc-drupal-2: #81ceff; 154 | 155 | $bc-drupal-3: #00598e; 156 | 157 | $bc-dunked: #2f3238; 158 | 159 | $bc-dunked-2: #3fc380; 160 | 161 | $bc-ebay: #e53238; 162 | 163 | $bc-ebay-2: #0064d2; 164 | 165 | $bc-ebay-3: #f5af02; 166 | 167 | $bc-ebay-4: #86b817; 168 | 169 | $bc-engadget: #3399cc; 170 | 171 | $bc-envato: #528036; 172 | 173 | $bc-etsy: #eb6d20; 174 | 175 | $bc-evernote: #5ba525; 176 | 177 | $bc-fab-com: #dd0017; 178 | 179 | $bc-facebook: #3b5998; 180 | 181 | $bc-firefox: #e66000; 182 | 183 | $bc-flickr: #0063dc; 184 | 185 | $bc-flickr-2: #ff0084; 186 | 187 | $bc-forrst: #5b9a68; 188 | 189 | $bc-foursquare: #F94877; 190 | 191 | $bc-garmin: #007cc3; 192 | 193 | $bc-getglue: #2d75a2; 194 | 195 | $bc-gimmebar: #f70078; 196 | 197 | $bc-github: #171515; 198 | 199 | $bc-google: #4285f4; 200 | 201 | $bc-google-2: #db4437; 202 | 203 | $bc-google-3: #f4b400; 204 | 205 | $bc-google-4: #0f9d58; 206 | 207 | $bc-google-5: #e7e6dd; 208 | 209 | $bc-googleplus: #dd4b39; 210 | 211 | $bc-grooveshark: #f77f00; 212 | 213 | $bc-groupon: #82b548; 214 | 215 | $bc-hacker-news: #ff6600; 216 | 217 | $bc-hellowallet: #0085ca; 218 | 219 | $bc-heroku: #c7c5e6; 220 | 221 | $bc-heroku-2: #6567a5; 222 | 223 | $bc-hootsuite: #003366; 224 | 225 | $bc-houzz: #73ba37; 226 | 227 | $bc-hp: #0096d6; 228 | 229 | $bc-html5: #ec6231; 230 | 231 | $bc-hulu: #8cc83b; 232 | 233 | $bc-ibm: #003e6a; 234 | 235 | $bc-ikea: #ffcc33; 236 | 237 | $bc-imdb: #f3ce13; 238 | 239 | $bc-imgur: #85bf25; 240 | 241 | $bc-instagram: #3f729b; 242 | 243 | $bc-instapaper: #1c1c1c; 244 | 245 | $bc-intel: #0071c5; 246 | 247 | $bc-intuit: #365ebf; 248 | 249 | $bc-kickstarter: #76cc1e; 250 | 251 | $bc-kippt: #e03500; 252 | 253 | $bc-kodery: #00af81; 254 | 255 | $bc-lastfm: #c3000d; 256 | 257 | $bc-linkedin: #007bb6; 258 | 259 | $bc-livestream: #cf0005; 260 | 261 | $bc-lumo: #576396; 262 | 263 | $bc-makita: #d82028; 264 | 265 | $bc-makita-2: #29a0b7; 266 | 267 | $bc-mixpanel: #a086d3; 268 | 269 | $bc-meetup: #e51937; 270 | 271 | $bc-netflix: #b9070a; 272 | 273 | $bc-nokia: #183693; 274 | 275 | $bc-nvidia: #76b900; 276 | 277 | $bc-odnoklassniki: #ed812b; 278 | 279 | $bc-opera: #cc0f16; 280 | 281 | $bc-path: #e41f11; 282 | 283 | $bc-paypal-dark: #1e477a; 284 | 285 | $bc-paypal-dark-2: #3b7bbf; 286 | 287 | $bc-pinboard: #0000e6; 288 | 289 | $bc-pinterest: #cc2127; 290 | 291 | $bc-playstation: #665cbe; 292 | 293 | $bc-pocket: #ee4056; 294 | 295 | $bc-prezi: #318bff; 296 | 297 | $bc-pusha: #0f71b4; 298 | 299 | $bc-quora: #a82400; 300 | 301 | $bc-quote-fm: #66ceff; 302 | 303 | $bc-rdio: #008fd5; 304 | 305 | $bc-readability: #9c0000; 306 | 307 | $bc-red-hat: #cc0000; 308 | 309 | $bc-reddit: #cee2f8; 310 | 311 | $bc-reddit-2: #ff4500; 312 | 313 | $bc-resource: #7eb400; 314 | 315 | $bc-rockpack: #0ba6ab; 316 | 317 | $bc-roon: #62b0d9; 318 | 319 | $bc-rss: #ee802f; 320 | 321 | $bc-salesforce: #1798c1; 322 | 323 | $bc-samsung: #0c4da2; 324 | 325 | $bc-shopify: #96bf48; 326 | 327 | $bc-skype: #00aff0; 328 | 329 | $bc-slack: #6fcbdc; 330 | 331 | $bc-slack-2: #e9a821; 332 | 333 | $bc-slack-3: #e11664; 334 | 335 | $bc-slack-4: #3fba91; 336 | 337 | $bc-smashing-magazine: #f0503a; 338 | 339 | $bc-snagajob: #f47a20; 340 | 341 | $bc-softonic: #008ace; 342 | 343 | $bc-soundcloud: #ff7700; 344 | 345 | $bc-space-box: #f86960; 346 | 347 | $bc-spotify: #81b71a; 348 | 349 | $bc-sprint: #fee100; 350 | 351 | $bc-squarespace: #121212; 352 | 353 | $bc-stackoverflow: #ef8236; 354 | 355 | $bc-staples: #cc0000; 356 | 357 | $bc-status-chart: #d7584f; 358 | 359 | $bc-stripe: #008cdd; 360 | 361 | $bc-studyblue: #00afe1; 362 | 363 | $bc-stumbleupon: #f74425; 364 | 365 | $bc-swarm: #fd9627; 366 | 367 | $bc-t-mobile: #ea0a8e; 368 | 369 | $bc-technorati: #40a800; 370 | 371 | $bc-the-next-web: #ef4423; 372 | 373 | $bc-treehouse: #5cb868; 374 | 375 | $bc-trello: #256a92; 376 | 377 | $bc-trulia: #5eab1f; 378 | 379 | $bc-tumblr: #35465c; 380 | 381 | $bc-twitch-tv: #6441a5; 382 | 383 | $bc-twitter: #55acee; 384 | 385 | $bc-typekit: #9aca3c; 386 | 387 | $bc-typo3: #ff8700; 388 | 389 | $bc-ubuntu: #dd4814; 390 | 391 | $bc-ustream: #3388ff; 392 | 393 | $bc-verizon: #ef1d1d; 394 | 395 | $bc-vimeo: #44bbff; 396 | 397 | $bc-vine: #00a478; 398 | 399 | $bc-virb: #06afd8; 400 | 401 | $bc-virgin-media: #cc0000; 402 | 403 | $bc-vkontakte: #45668e; 404 | 405 | $bc-wolfram-alpha: #f68d1e; 406 | 407 | $bc-wooga: #5b009c; 408 | 409 | $bc-wordpress: #21759b; 410 | 411 | $bc-wordpress-2: #d54e21; 412 | 413 | $bc-wordpress-3: #464646; 414 | 415 | $bc-wunderlist: #2b88d9; 416 | 417 | $bc-xbox: #52b043; 418 | 419 | $bc-xing: #126567; 420 | 421 | $bc-yahoo: #720e9e; 422 | 423 | $bc-yandex: #ffcc00; 424 | 425 | $bc-yelp: #c41200; 426 | 427 | $bc-youtube: #cd201f; 428 | 429 | $bc-zalongo: #5498dc; 430 | 431 | $bc-zendesk: #78a300; 432 | 433 | $bc-zerply: #9dcc7a; 434 | 435 | $bc-zootool: #5e8b1d; 436 | 437 | $bc-microsoft: #f65314; 438 | 439 | $bc-microsoft-2: #7cbb00; 440 | 441 | $bc-microsoft-3: #00a1f1; 442 | 443 | $bc-microsoft-4: #ffbb00; 444 | 445 | $bc-windows: #00bcf2; 446 | 447 | $bc-microsoft-office: #ea3e23; 448 | 449 | $bc-windows-phone: #68217a; 450 | 451 | $bc-bing: #ffb900; 452 | 453 | $bc-kiwipay: #00b0df; 454 | 455 | $bc-wordpress-com: #1e8cbe; 456 | 457 | $bc-django: #092e20; 458 | 459 | $bc-geocaching: #4a742c; 460 | 461 | $bc-utorrent: #00853f; 462 | 463 | $bc-arch-linux: #1793d1; 464 | 465 | $bc-arch-linux-2: #333333; 466 | 467 | $bc-gittip: #663300; 468 | 469 | $bc-gittip-2: #339966; 470 | 471 | $bc-flattr: #f67c1a; 472 | 473 | $bc-flattr-2: #338d11; 474 | 475 | $bc-hsbc: #db0011; 476 | 477 | $bc-zopim: #ff9d3b; 478 | 479 | $bc-bitbucket: #205081; 480 | 481 | $bc-strava: #fc4c02; 482 | 483 | $bc-mic: #21c1ff; 484 | -------------------------------------------------------------------------------- /dist/0.5.0/stylus/brand-colors.0.5.0.styl: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.5.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat = #fb0a2a; 10 | 11 | $bc-500px = #00aeef; 12 | 13 | $bc-about-me = #00405d; 14 | 15 | $bc-about-me-2 = #062f3c; 16 | 17 | $bc-about-me-3 = #2b82ad; 18 | 19 | $bc-about-me-4 = #cc7a00; 20 | 21 | $bc-about-me-5 = #ffcc33; 22 | 23 | $bc-addvocate = #ff3322; 24 | 25 | $bc-adobe = #ff0000; 26 | 27 | $bc-adobe-2 = #fbb034; 28 | 29 | $bc-adobe-3 = #ffdd00; 30 | 31 | $bc-adobe-4 = #c1d82f; 32 | 33 | $bc-adobe-5 = #00a4e4; 34 | 35 | $bc-adobe-6 = #8a7967; 36 | 37 | $bc-adobe-7 = #6a737b; 38 | 39 | $bc-aim = #ffd900; 40 | 41 | $bc-amazon = #ff9900; 42 | 43 | $bc-amazon-2 = #146eb4; 44 | 45 | $bc-android = #a4c639; 46 | 47 | $bc-angies-list = #7fbb00; 48 | 49 | $bc-aol = #ff0b00; 50 | 51 | $bc-aol-2 = #00c4ff; 52 | 53 | $bc-asana = #1f8dd6; 54 | 55 | $bc-asana-2 = #34ad00; 56 | 57 | $bc-atlassian = #003366; 58 | 59 | $bc-behance = #1769ff; 60 | 61 | $bc-big-cartel = #a0ac48; 62 | 63 | $bc-big-cartel-2 = #70b29c; 64 | 65 | $bc-bitly = #ee6123; 66 | 67 | $bc-bitly-2 = #61b3de; 68 | 69 | $bc-blogger = #f57d00; 70 | 71 | $bc-boeing = #0039a6; 72 | 73 | $bc-booking-com = #003580; 74 | 75 | $bc-carbonmade = #613854; 76 | 77 | $bc-cheddar = #ff7243; 78 | 79 | $bc-coca-cola = #ed1c16; 80 | 81 | $bc-code-school = #616f67; 82 | 83 | $bc-code-school-2 = #c68143; 84 | 85 | $bc-creative-market = #8ba753; 86 | 87 | $bc-delicious = #3399ff; 88 | 89 | $bc-delicious-2 = #222222; 90 | 91 | $bc-delicious-3 = #eeeeee; 92 | 93 | $bc-dell = #0085c3; 94 | 95 | $bc-dell-2 = #7ab800; 96 | 97 | $bc-dell-3 = #f2af00; 98 | 99 | $bc-dell-4 = #dc5034; 100 | 101 | $bc-dell-5 = #ce1126; 102 | 103 | $bc-dell-6 = #b7295a; 104 | 105 | $bc-dell-7 = #6e2585; 106 | 107 | $bc-dell-8 = #71c6c1; 108 | 109 | $bc-dell-9 = #5482ab; 110 | 111 | $bc-dell-10 = #009bbb; 112 | 113 | $bc-dell-11 = #444444; 114 | 115 | $bc-dell-12 = #eeeeee; 116 | 117 | $bc-designmoo = #e64b50; 118 | 119 | $bc-designmoo-2 = #dbc65d; 120 | 121 | $bc-deviantart = #4e6252; 122 | 123 | $bc-designer-news = #2d72d9; 124 | 125 | $bc-devour = #ff0000; 126 | 127 | $bc-dewalt = #febd17; 128 | 129 | $bc-disqus = #2e9fff; 130 | 131 | $bc-dribbble = #444444; 132 | 133 | $bc-dribbble-2 = #ea4c89; 134 | 135 | $bc-dribbble-3 = #8aba56; 136 | 137 | $bc-dribbble-4 = #ff8833; 138 | 139 | $bc-dribbble-5 = #00b6e3; 140 | 141 | $bc-dribbble-6 = #9ba5a8; 142 | 143 | $bc-dropbox = #007ee5; 144 | 145 | $bc-dropbox-2 = #7b8994; 146 | 147 | $bc-dropbox-3 = #47525d; 148 | 149 | $bc-dropbox-4 = #3d464d; 150 | 151 | $bc-drupal = #0077c0; 152 | 153 | $bc-drupal-2 = #81ceff; 154 | 155 | $bc-drupal-3 = #00598e; 156 | 157 | $bc-dunked = #2f3238; 158 | 159 | $bc-dunked-2 = #3fc380; 160 | 161 | $bc-ebay = #e53238; 162 | 163 | $bc-ebay-2 = #0064d2; 164 | 165 | $bc-ebay-3 = #f5af02; 166 | 167 | $bc-ebay-4 = #86b817; 168 | 169 | $bc-engadget = #3399cc; 170 | 171 | $bc-envato = #528036; 172 | 173 | $bc-etsy = #eb6d20; 174 | 175 | $bc-evernote = #5ba525; 176 | 177 | $bc-fab-com = #dd0017; 178 | 179 | $bc-facebook = #3b5998; 180 | 181 | $bc-firefox = #e66000; 182 | 183 | $bc-flickr = #0063dc; 184 | 185 | $bc-flickr-2 = #ff0084; 186 | 187 | $bc-forrst = #5b9a68; 188 | 189 | $bc-foursquare = #F94877; 190 | 191 | $bc-garmin = #007cc3; 192 | 193 | $bc-getglue = #2d75a2; 194 | 195 | $bc-gimmebar = #f70078; 196 | 197 | $bc-github = #171515; 198 | 199 | $bc-google = #4285f4; 200 | 201 | $bc-google-2 = #db4437; 202 | 203 | $bc-google-3 = #f4b400; 204 | 205 | $bc-google-4 = #0f9d58; 206 | 207 | $bc-google-5 = #e7e6dd; 208 | 209 | $bc-googleplus = #dd4b39; 210 | 211 | $bc-grooveshark = #f77f00; 212 | 213 | $bc-groupon = #82b548; 214 | 215 | $bc-hacker-news = #ff6600; 216 | 217 | $bc-hellowallet = #0085ca; 218 | 219 | $bc-heroku = #c7c5e6; 220 | 221 | $bc-heroku-2 = #6567a5; 222 | 223 | $bc-hootsuite = #003366; 224 | 225 | $bc-houzz = #73ba37; 226 | 227 | $bc-hp = #0096d6; 228 | 229 | $bc-html5 = #ec6231; 230 | 231 | $bc-hulu = #8cc83b; 232 | 233 | $bc-ibm = #003e6a; 234 | 235 | $bc-ikea = #ffcc33; 236 | 237 | $bc-imdb = #f3ce13; 238 | 239 | $bc-imgur = #85bf25; 240 | 241 | $bc-instagram = #3f729b; 242 | 243 | $bc-instapaper = #1c1c1c; 244 | 245 | $bc-intel = #0071c5; 246 | 247 | $bc-intuit = #365ebf; 248 | 249 | $bc-kickstarter = #76cc1e; 250 | 251 | $bc-kippt = #e03500; 252 | 253 | $bc-kodery = #00af81; 254 | 255 | $bc-lastfm = #c3000d; 256 | 257 | $bc-linkedin = #007bb6; 258 | 259 | $bc-livestream = #cf0005; 260 | 261 | $bc-lumo = #576396; 262 | 263 | $bc-makita = #d82028; 264 | 265 | $bc-makita-2 = #29a0b7; 266 | 267 | $bc-mixpanel = #a086d3; 268 | 269 | $bc-meetup = #e51937; 270 | 271 | $bc-netflix = #b9070a; 272 | 273 | $bc-nokia = #183693; 274 | 275 | $bc-nvidia = #76b900; 276 | 277 | $bc-odnoklassniki = #ed812b; 278 | 279 | $bc-opera = #cc0f16; 280 | 281 | $bc-path = #e41f11; 282 | 283 | $bc-paypal-dark = #1e477a; 284 | 285 | $bc-paypal-dark-2 = #3b7bbf; 286 | 287 | $bc-pinboard = #0000e6; 288 | 289 | $bc-pinterest = #cc2127; 290 | 291 | $bc-playstation = #665cbe; 292 | 293 | $bc-pocket = #ee4056; 294 | 295 | $bc-prezi = #318bff; 296 | 297 | $bc-pusha = #0f71b4; 298 | 299 | $bc-quora = #a82400; 300 | 301 | $bc-quote-fm = #66ceff; 302 | 303 | $bc-rdio = #008fd5; 304 | 305 | $bc-readability = #9c0000; 306 | 307 | $bc-red-hat = #cc0000; 308 | 309 | $bc-reddit = #cee2f8; 310 | 311 | $bc-reddit-2 = #ff4500; 312 | 313 | $bc-resource = #7eb400; 314 | 315 | $bc-rockpack = #0ba6ab; 316 | 317 | $bc-roon = #62b0d9; 318 | 319 | $bc-rss = #ee802f; 320 | 321 | $bc-salesforce = #1798c1; 322 | 323 | $bc-samsung = #0c4da2; 324 | 325 | $bc-shopify = #96bf48; 326 | 327 | $bc-skype = #00aff0; 328 | 329 | $bc-slack = #6fcbdc; 330 | 331 | $bc-slack-2 = #e9a821; 332 | 333 | $bc-slack-3 = #e11664; 334 | 335 | $bc-slack-4 = #3fba91; 336 | 337 | $bc-smashing-magazine = #f0503a; 338 | 339 | $bc-snagajob = #f47a20; 340 | 341 | $bc-softonic = #008ace; 342 | 343 | $bc-soundcloud = #ff7700; 344 | 345 | $bc-space-box = #f86960; 346 | 347 | $bc-spotify = #81b71a; 348 | 349 | $bc-sprint = #fee100; 350 | 351 | $bc-squarespace = #121212; 352 | 353 | $bc-stackoverflow = #ef8236; 354 | 355 | $bc-staples = #cc0000; 356 | 357 | $bc-status-chart = #d7584f; 358 | 359 | $bc-stripe = #008cdd; 360 | 361 | $bc-studyblue = #00afe1; 362 | 363 | $bc-stumbleupon = #f74425; 364 | 365 | $bc-swarm = #fd9627; 366 | 367 | $bc-t-mobile = #ea0a8e; 368 | 369 | $bc-technorati = #40a800; 370 | 371 | $bc-the-next-web = #ef4423; 372 | 373 | $bc-treehouse = #5cb868; 374 | 375 | $bc-trello = #256a92; 376 | 377 | $bc-trulia = #5eab1f; 378 | 379 | $bc-tumblr = #35465c; 380 | 381 | $bc-twitch-tv = #6441a5; 382 | 383 | $bc-twitter = #55acee; 384 | 385 | $bc-typekit = #9aca3c; 386 | 387 | $bc-typo3 = #ff8700; 388 | 389 | $bc-ubuntu = #dd4814; 390 | 391 | $bc-ustream = #3388ff; 392 | 393 | $bc-verizon = #ef1d1d; 394 | 395 | $bc-vimeo = #44bbff; 396 | 397 | $bc-vine = #00a478; 398 | 399 | $bc-virb = #06afd8; 400 | 401 | $bc-virgin-media = #cc0000; 402 | 403 | $bc-vkontakte = #45668e; 404 | 405 | $bc-wolfram-alpha = #f68d1e; 406 | 407 | $bc-wooga = #5b009c; 408 | 409 | $bc-wordpress = #21759b; 410 | 411 | $bc-wordpress-2 = #d54e21; 412 | 413 | $bc-wordpress-3 = #464646; 414 | 415 | $bc-wunderlist = #2b88d9; 416 | 417 | $bc-xbox = #52b043; 418 | 419 | $bc-xing = #126567; 420 | 421 | $bc-yahoo = #720e9e; 422 | 423 | $bc-yandex = #ffcc00; 424 | 425 | $bc-yelp = #c41200; 426 | 427 | $bc-youtube = #cd201f; 428 | 429 | $bc-zalongo = #5498dc; 430 | 431 | $bc-zendesk = #78a300; 432 | 433 | $bc-zerply = #9dcc7a; 434 | 435 | $bc-zootool = #5e8b1d; 436 | 437 | $bc-microsoft = #f65314; 438 | 439 | $bc-microsoft-2 = #7cbb00; 440 | 441 | $bc-microsoft-3 = #00a1f1; 442 | 443 | $bc-microsoft-4 = #ffbb00; 444 | 445 | $bc-windows = #00bcf2; 446 | 447 | $bc-microsoft-office = #ea3e23; 448 | 449 | $bc-windows-phone = #68217a; 450 | 451 | $bc-bing = #ffb900; 452 | 453 | $bc-kiwipay = #00b0df; 454 | 455 | $bc-wordpress-com = #1e8cbe; 456 | 457 | $bc-django = #092e20; 458 | 459 | $bc-geocaching = #4a742c; 460 | 461 | $bc-utorrent = #00853f; 462 | 463 | $bc-arch-linux = #1793d1; 464 | 465 | $bc-arch-linux-2 = #333333; 466 | 467 | $bc-gittip = #663300; 468 | 469 | $bc-gittip-2 = #339966; 470 | 471 | $bc-flattr = #f67c1a; 472 | 473 | $bc-flattr-2 = #338d11; 474 | 475 | $bc-hsbc = #db0011; 476 | 477 | $bc-zopim = #ff9d3b; 478 | 479 | $bc-bitbucket = #205081; 480 | 481 | $bc-strava = #fc4c02; 482 | 483 | $bc-mic = #21c1ff; 484 | -------------------------------------------------------------------------------- /dist/0.5.5/less/brand-colors.0.5.5.less: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.5.5 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | @bc-4ormat: #fb0a2a;@bc-500px: #00aeef;@bc-about-me: #00405d;@bc-about-me-2: #062f3c;@bc-about-me-3: #2b82ad;@bc-about-me-4: #cc7a00;@bc-about-me-5: #ffcc33;@bc-addvocate: #ff3322;@bc-adobe: #ff0000;@bc-adobe-2: #fbb034;@bc-adobe-3: #ffdd00;@bc-adobe-4: #c1d82f;@bc-adobe-5: #00a4e4;@bc-adobe-6: #8a7967;@bc-adobe-7: #6a737b;@bc-aim: #ffd900;@bc-amazon: #ff9900;@bc-amazon-2: #146eb4;@bc-android: #a4c639;@bc-angies-list: #7fbb00;@bc-aol: #ff0b00;@bc-aol-2: #00c4ff;@bc-asana: #1f8dd6;@bc-asana-2: #34ad00;@bc-atlassian: #003366;@bc-behance: #1769ff;@bc-big-cartel: #a0ac48;@bc-big-cartel-2: #70b29c;@bc-bitly: #ee6123;@bc-bitly-2: #61b3de;@bc-blogger: #f57d00;@bc-boeing: #0039a6;@bc-booking-com: #003580;@bc-carbonmade: #613854;@bc-cheddar: #ff7243;@bc-coca-cola: #ed1c16;@bc-code-school: #616f67;@bc-code-school-2: #c68143;@bc-creative-market: #8ba753;@bc-delicious: #3399ff;@bc-delicious-2: #222222;@bc-delicious-3: #eeeeee;@bc-dell: #0085c3;@bc-dell-2: #7ab800;@bc-dell-3: #f2af00;@bc-dell-4: #dc5034;@bc-dell-5: #ce1126;@bc-dell-6: #b7295a;@bc-dell-7: #6e2585;@bc-dell-8: #71c6c1;@bc-dell-9: #5482ab;@bc-dell-10: #009bbb;@bc-dell-11: #444444;@bc-dell-12: #eeeeee;@bc-designmoo: #e64b50;@bc-designmoo-2: #dbc65d;@bc-deviantart: #4e6252;@bc-designer-news: #2d72d9;@bc-devour: #ff0000;@bc-dewalt: #febd17;@bc-disqus: #2e9fff;@bc-dribbble: #444444;@bc-dribbble-2: #ea4c89;@bc-dribbble-3: #8aba56;@bc-dribbble-4: #ff8833;@bc-dribbble-5: #00b6e3;@bc-dribbble-6: #9ba5a8;@bc-dropbox: #007ee5;@bc-dropbox-2: #7b8994;@bc-dropbox-3: #47525d;@bc-dropbox-4: #3d464d;@bc-drupal: #0077c0;@bc-drupal-2: #81ceff;@bc-drupal-3: #00598e;@bc-dunked: #2f3238;@bc-dunked-2: #3fc380;@bc-ebay: #e53238;@bc-ebay-2: #0064d2;@bc-ebay-3: #f5af02;@bc-ebay-4: #86b817;@bc-engadget: #3399cc;@bc-envato: #528036;@bc-etsy: #eb6d20;@bc-evernote: #5ba525;@bc-fab-com: #dd0017;@bc-facebook: #3b5998;@bc-firefox: #e66000;@bc-flickr: #0063dc;@bc-flickr-2: #ff0084;@bc-forrst: #5b9a68;@bc-foursquare: #F94877;@bc-garmin: #007cc3;@bc-getglue: #2d75a2;@bc-gimmebar: #f70078;@bc-github: #171515;@bc-google: #4285f4;@bc-google-2: #db4437;@bc-google-3: #f4b400;@bc-google-4: #0f9d58;@bc-google-5: #e7e6dd;@bc-googleplus: #dd4b39;@bc-grooveshark: #f77f00;@bc-groupon: #82b548;@bc-hacker-news: #ff6600;@bc-hellowallet: #0085ca;@bc-heroku: #c7c5e6;@bc-heroku-2: #6567a5;@bc-hootsuite: #003366;@bc-houzz: #73ba37;@bc-hp: #0096d6;@bc-html5: #ec6231;@bc-hulu: #8cc83b;@bc-ibm: #003e6a;@bc-ikea: #ffcc33;@bc-imdb: #f3ce13;@bc-imgur: #85bf25;@bc-instagram: #3f729b;@bc-instapaper: #1c1c1c;@bc-intel: #0071c5;@bc-intuit: #365ebf;@bc-kickstarter: #76cc1e;@bc-kippt: #e03500;@bc-kodery: #00af81;@bc-lastfm: #c3000d;@bc-linkedin: #007bb6;@bc-livestream: #cf0005;@bc-lumo: #576396;@bc-makita: #d82028;@bc-makita-2: #29a0b7;@bc-mixpanel: #a086d3;@bc-meetup: #e51937;@bc-netflix: #b9070a;@bc-nokia: #183693;@bc-nvidia: #76b900;@bc-odnoklassniki: #ed812b;@bc-opera: #cc0f16;@bc-path: #e41f11;@bc-paypal-dark: #1e477a;@bc-paypal-dark-2: #3b7bbf;@bc-pinboard: #0000e6;@bc-pinterest: #cc2127;@bc-playstation: #665cbe;@bc-pocket: #ee4056;@bc-prezi: #318bff;@bc-pusha: #0f71b4;@bc-quora: #a82400;@bc-quote-fm: #66ceff;@bc-rdio: #008fd5;@bc-readability: #9c0000;@bc-red-hat: #cc0000;@bc-reddit: #cee2f8;@bc-reddit-2: #ff4500;@bc-resource: #7eb400;@bc-rockpack: #0ba6ab;@bc-roon: #62b0d9;@bc-rss: #ee802f;@bc-salesforce: #1798c1;@bc-samsung: #0c4da2;@bc-shopify: #96bf48;@bc-skype: #00aff0;@bc-slack: #6fcbdc;@bc-slack-2: #e9a821;@bc-slack-3: #e11664;@bc-slack-4: #3fba91;@bc-smashing-magazine: #f0503a;@bc-snagajob: #f47a20;@bc-softonic: #008ace;@bc-soundcloud: #ff7700;@bc-space-box: #f86960;@bc-spotify: #81b71a;@bc-sprint: #fee100;@bc-squarespace: #121212;@bc-stackoverflow: #ef8236;@bc-staples: #cc0000;@bc-status-chart: #d7584f;@bc-stripe: #008cdd;@bc-studyblue: #00afe1;@bc-stumbleupon: #f74425;@bc-swarm: #fd9627;@bc-t-mobile: #ea0a8e;@bc-technorati: #40a800;@bc-the-next-web: #ef4423;@bc-treehouse: #5cb868;@bc-trello: #256a92;@bc-trulia: #5eab1f;@bc-tumblr: #35465c;@bc-twitch-tv: #6441a5;@bc-twitter: #55acee;@bc-typekit: #9aca3c;@bc-typo3: #ff8700;@bc-ubuntu: #dd4814;@bc-ustream: #3388ff;@bc-verizon: #ef1d1d;@bc-vimeo: #44bbff;@bc-vine: #00a478;@bc-virb: #06afd8;@bc-virgin-media: #cc0000;@bc-vkontakte: #45668e;@bc-wolfram-alpha: #f68d1e;@bc-wooga: #5b009c;@bc-wordpress: #21759b;@bc-wordpress-2: #d54e21;@bc-wordpress-3: #464646;@bc-wunderlist: #2b88d9;@bc-xbox: #52b043;@bc-xing: #126567;@bc-yahoo: #720e9e;@bc-yandex: #ffcc00;@bc-yelp: #c41200;@bc-youtube: #cd201f;@bc-zalongo: #5498dc;@bc-zendesk: #78a300;@bc-zerply: #9dcc7a;@bc-zootool: #5e8b1d;@bc-microsoft: #f65314;@bc-microsoft-2: #7cbb00;@bc-microsoft-3: #00a1f1;@bc-microsoft-4: #ffbb00;@bc-windows: #00bcf2;@bc-microsoft-office: #ea3e23;@bc-windows-phone: #68217a;@bc-bing: #ffb900;@bc-kiwipay: #00b0df;@bc-wordpress-com: #1e8cbe;@bc-django: #092e20;@bc-geocaching: #4a742c;@bc-utorrent: #00853f;@bc-arch-linux: #1793d1;@bc-arch-linux-2: #333333;@bc-gittip: #663300;@bc-gittip-2: #339966;@bc-flattr: #f67c1a;@bc-flattr-2: #338d11;@bc-hsbc: #db0011;@bc-zopim: #ff9d3b;@bc-bitbucket: #205081;@bc-strava: #fc4c02;@bc-mic: #21c1ff; -------------------------------------------------------------------------------- /dist/0.5.5/sass/brand-colors.0.5.5.sass: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.5.5 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-amazon: #ff9900; 42 | 43 | $bc-amazon-2: #146eb4; 44 | 45 | $bc-android: #a4c639; 46 | 47 | $bc-angies-list: #7fbb00; 48 | 49 | $bc-aol: #ff0b00; 50 | 51 | $bc-aol-2: #00c4ff; 52 | 53 | $bc-asana: #1f8dd6; 54 | 55 | $bc-asana-2: #34ad00; 56 | 57 | $bc-atlassian: #003366; 58 | 59 | $bc-behance: #1769ff; 60 | 61 | $bc-big-cartel: #a0ac48; 62 | 63 | $bc-big-cartel-2: #70b29c; 64 | 65 | $bc-bitly: #ee6123; 66 | 67 | $bc-bitly-2: #61b3de; 68 | 69 | $bc-blogger: #f57d00; 70 | 71 | $bc-boeing: #0039a6; 72 | 73 | $bc-booking-com: #003580; 74 | 75 | $bc-carbonmade: #613854; 76 | 77 | $bc-cheddar: #ff7243; 78 | 79 | $bc-coca-cola: #ed1c16; 80 | 81 | $bc-code-school: #616f67; 82 | 83 | $bc-code-school-2: #c68143; 84 | 85 | $bc-creative-market: #8ba753; 86 | 87 | $bc-delicious: #3399ff; 88 | 89 | $bc-delicious-2: #222222; 90 | 91 | $bc-delicious-3: #eeeeee; 92 | 93 | $bc-dell: #0085c3; 94 | 95 | $bc-dell-2: #7ab800; 96 | 97 | $bc-dell-3: #f2af00; 98 | 99 | $bc-dell-4: #dc5034; 100 | 101 | $bc-dell-5: #ce1126; 102 | 103 | $bc-dell-6: #b7295a; 104 | 105 | $bc-dell-7: #6e2585; 106 | 107 | $bc-dell-8: #71c6c1; 108 | 109 | $bc-dell-9: #5482ab; 110 | 111 | $bc-dell-10: #009bbb; 112 | 113 | $bc-dell-11: #444444; 114 | 115 | $bc-dell-12: #eeeeee; 116 | 117 | $bc-designmoo: #e64b50; 118 | 119 | $bc-designmoo-2: #dbc65d; 120 | 121 | $bc-deviantart: #4e6252; 122 | 123 | $bc-designer-news: #2d72d9; 124 | 125 | $bc-devour: #ff0000; 126 | 127 | $bc-dewalt: #febd17; 128 | 129 | $bc-disqus: #2e9fff; 130 | 131 | $bc-dribbble: #444444; 132 | 133 | $bc-dribbble-2: #ea4c89; 134 | 135 | $bc-dribbble-3: #8aba56; 136 | 137 | $bc-dribbble-4: #ff8833; 138 | 139 | $bc-dribbble-5: #00b6e3; 140 | 141 | $bc-dribbble-6: #9ba5a8; 142 | 143 | $bc-dropbox: #007ee5; 144 | 145 | $bc-dropbox-2: #7b8994; 146 | 147 | $bc-dropbox-3: #47525d; 148 | 149 | $bc-dropbox-4: #3d464d; 150 | 151 | $bc-drupal: #0077c0; 152 | 153 | $bc-drupal-2: #81ceff; 154 | 155 | $bc-drupal-3: #00598e; 156 | 157 | $bc-dunked: #2f3238; 158 | 159 | $bc-dunked-2: #3fc380; 160 | 161 | $bc-ebay: #e53238; 162 | 163 | $bc-ebay-2: #0064d2; 164 | 165 | $bc-ebay-3: #f5af02; 166 | 167 | $bc-ebay-4: #86b817; 168 | 169 | $bc-engadget: #3399cc; 170 | 171 | $bc-envato: #528036; 172 | 173 | $bc-etsy: #eb6d20; 174 | 175 | $bc-evernote: #5ba525; 176 | 177 | $bc-fab-com: #dd0017; 178 | 179 | $bc-facebook: #3b5998; 180 | 181 | $bc-firefox: #e66000; 182 | 183 | $bc-flickr: #0063dc; 184 | 185 | $bc-flickr-2: #ff0084; 186 | 187 | $bc-forrst: #5b9a68; 188 | 189 | $bc-foursquare: #F94877; 190 | 191 | $bc-garmin: #007cc3; 192 | 193 | $bc-getglue: #2d75a2; 194 | 195 | $bc-gimmebar: #f70078; 196 | 197 | $bc-github: #171515; 198 | 199 | $bc-google: #4285f4; 200 | 201 | $bc-google-2: #db4437; 202 | 203 | $bc-google-3: #f4b400; 204 | 205 | $bc-google-4: #0f9d58; 206 | 207 | $bc-google-5: #e7e6dd; 208 | 209 | $bc-googleplus: #dd4b39; 210 | 211 | $bc-grooveshark: #f77f00; 212 | 213 | $bc-groupon: #82b548; 214 | 215 | $bc-hacker-news: #ff6600; 216 | 217 | $bc-hellowallet: #0085ca; 218 | 219 | $bc-heroku: #c7c5e6; 220 | 221 | $bc-heroku-2: #6567a5; 222 | 223 | $bc-hootsuite: #003366; 224 | 225 | $bc-houzz: #73ba37; 226 | 227 | $bc-hp: #0096d6; 228 | 229 | $bc-html5: #ec6231; 230 | 231 | $bc-hulu: #8cc83b; 232 | 233 | $bc-ibm: #003e6a; 234 | 235 | $bc-ikea: #ffcc33; 236 | 237 | $bc-imdb: #f3ce13; 238 | 239 | $bc-imgur: #85bf25; 240 | 241 | $bc-instagram: #3f729b; 242 | 243 | $bc-instapaper: #1c1c1c; 244 | 245 | $bc-intel: #0071c5; 246 | 247 | $bc-intuit: #365ebf; 248 | 249 | $bc-kickstarter: #76cc1e; 250 | 251 | $bc-kippt: #e03500; 252 | 253 | $bc-kodery: #00af81; 254 | 255 | $bc-lastfm: #c3000d; 256 | 257 | $bc-linkedin: #007bb6; 258 | 259 | $bc-livestream: #cf0005; 260 | 261 | $bc-lumo: #576396; 262 | 263 | $bc-makita: #d82028; 264 | 265 | $bc-makita-2: #29a0b7; 266 | 267 | $bc-mixpanel: #a086d3; 268 | 269 | $bc-meetup: #e51937; 270 | 271 | $bc-netflix: #b9070a; 272 | 273 | $bc-nokia: #183693; 274 | 275 | $bc-nvidia: #76b900; 276 | 277 | $bc-odnoklassniki: #ed812b; 278 | 279 | $bc-opera: #cc0f16; 280 | 281 | $bc-path: #e41f11; 282 | 283 | $bc-paypal-dark: #1e477a; 284 | 285 | $bc-paypal-dark-2: #3b7bbf; 286 | 287 | $bc-pinboard: #0000e6; 288 | 289 | $bc-pinterest: #cc2127; 290 | 291 | $bc-playstation: #665cbe; 292 | 293 | $bc-pocket: #ee4056; 294 | 295 | $bc-prezi: #318bff; 296 | 297 | $bc-pusha: #0f71b4; 298 | 299 | $bc-quora: #a82400; 300 | 301 | $bc-quote-fm: #66ceff; 302 | 303 | $bc-rdio: #008fd5; 304 | 305 | $bc-readability: #9c0000; 306 | 307 | $bc-red-hat: #cc0000; 308 | 309 | $bc-reddit: #cee2f8; 310 | 311 | $bc-reddit-2: #ff4500; 312 | 313 | $bc-resource: #7eb400; 314 | 315 | $bc-rockpack: #0ba6ab; 316 | 317 | $bc-roon: #62b0d9; 318 | 319 | $bc-rss: #ee802f; 320 | 321 | $bc-salesforce: #1798c1; 322 | 323 | $bc-samsung: #0c4da2; 324 | 325 | $bc-shopify: #96bf48; 326 | 327 | $bc-skype: #00aff0; 328 | 329 | $bc-slack: #6fcbdc; 330 | 331 | $bc-slack-2: #e9a821; 332 | 333 | $bc-slack-3: #e11664; 334 | 335 | $bc-slack-4: #3fba91; 336 | 337 | $bc-smashing-magazine: #f0503a; 338 | 339 | $bc-snagajob: #f47a20; 340 | 341 | $bc-softonic: #008ace; 342 | 343 | $bc-soundcloud: #ff7700; 344 | 345 | $bc-space-box: #f86960; 346 | 347 | $bc-spotify: #81b71a; 348 | 349 | $bc-sprint: #fee100; 350 | 351 | $bc-squarespace: #121212; 352 | 353 | $bc-stackoverflow: #ef8236; 354 | 355 | $bc-staples: #cc0000; 356 | 357 | $bc-status-chart: #d7584f; 358 | 359 | $bc-stripe: #008cdd; 360 | 361 | $bc-studyblue: #00afe1; 362 | 363 | $bc-stumbleupon: #f74425; 364 | 365 | $bc-swarm: #fd9627; 366 | 367 | $bc-t-mobile: #ea0a8e; 368 | 369 | $bc-technorati: #40a800; 370 | 371 | $bc-the-next-web: #ef4423; 372 | 373 | $bc-treehouse: #5cb868; 374 | 375 | $bc-trello: #256a92; 376 | 377 | $bc-trulia: #5eab1f; 378 | 379 | $bc-tumblr: #35465c; 380 | 381 | $bc-twitch-tv: #6441a5; 382 | 383 | $bc-twitter: #55acee; 384 | 385 | $bc-typekit: #9aca3c; 386 | 387 | $bc-typo3: #ff8700; 388 | 389 | $bc-ubuntu: #dd4814; 390 | 391 | $bc-ustream: #3388ff; 392 | 393 | $bc-verizon: #ef1d1d; 394 | 395 | $bc-vimeo: #44bbff; 396 | 397 | $bc-vine: #00a478; 398 | 399 | $bc-virb: #06afd8; 400 | 401 | $bc-virgin-media: #cc0000; 402 | 403 | $bc-vkontakte: #45668e; 404 | 405 | $bc-wolfram-alpha: #f68d1e; 406 | 407 | $bc-wooga: #5b009c; 408 | 409 | $bc-wordpress: #21759b; 410 | 411 | $bc-wordpress-2: #d54e21; 412 | 413 | $bc-wordpress-3: #464646; 414 | 415 | $bc-wunderlist: #2b88d9; 416 | 417 | $bc-xbox: #52b043; 418 | 419 | $bc-xing: #126567; 420 | 421 | $bc-yahoo: #720e9e; 422 | 423 | $bc-yandex: #ffcc00; 424 | 425 | $bc-yelp: #c41200; 426 | 427 | $bc-youtube: #cd201f; 428 | 429 | $bc-zalongo: #5498dc; 430 | 431 | $bc-zendesk: #78a300; 432 | 433 | $bc-zerply: #9dcc7a; 434 | 435 | $bc-zootool: #5e8b1d; 436 | 437 | $bc-microsoft: #f65314; 438 | 439 | $bc-microsoft-2: #7cbb00; 440 | 441 | $bc-microsoft-3: #00a1f1; 442 | 443 | $bc-microsoft-4: #ffbb00; 444 | 445 | $bc-windows: #00bcf2; 446 | 447 | $bc-microsoft-office: #ea3e23; 448 | 449 | $bc-windows-phone: #68217a; 450 | 451 | $bc-bing: #ffb900; 452 | 453 | $bc-kiwipay: #00b0df; 454 | 455 | $bc-wordpress-com: #1e8cbe; 456 | 457 | $bc-django: #092e20; 458 | 459 | $bc-geocaching: #4a742c; 460 | 461 | $bc-utorrent: #00853f; 462 | 463 | $bc-arch-linux: #1793d1; 464 | 465 | $bc-arch-linux-2: #333333; 466 | 467 | $bc-gittip: #663300; 468 | 469 | $bc-gittip-2: #339966; 470 | 471 | $bc-flattr: #f67c1a; 472 | 473 | $bc-flattr-2: #338d11; 474 | 475 | $bc-hsbc: #db0011; 476 | 477 | $bc-zopim: #ff9d3b; 478 | 479 | $bc-bitbucket: #205081; 480 | 481 | $bc-strava: #fc4c02; 482 | 483 | $bc-mic: #21c1ff; 484 | -------------------------------------------------------------------------------- /dist/0.5.5/scss/brand-colors.0.5.5.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.5.5 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-amazon: #ff9900; 42 | 43 | $bc-amazon-2: #146eb4; 44 | 45 | $bc-android: #a4c639; 46 | 47 | $bc-angies-list: #7fbb00; 48 | 49 | $bc-aol: #ff0b00; 50 | 51 | $bc-aol-2: #00c4ff; 52 | 53 | $bc-asana: #1f8dd6; 54 | 55 | $bc-asana-2: #34ad00; 56 | 57 | $bc-atlassian: #003366; 58 | 59 | $bc-behance: #1769ff; 60 | 61 | $bc-big-cartel: #a0ac48; 62 | 63 | $bc-big-cartel-2: #70b29c; 64 | 65 | $bc-bitly: #ee6123; 66 | 67 | $bc-bitly-2: #61b3de; 68 | 69 | $bc-blogger: #f57d00; 70 | 71 | $bc-boeing: #0039a6; 72 | 73 | $bc-booking-com: #003580; 74 | 75 | $bc-carbonmade: #613854; 76 | 77 | $bc-cheddar: #ff7243; 78 | 79 | $bc-coca-cola: #ed1c16; 80 | 81 | $bc-code-school: #616f67; 82 | 83 | $bc-code-school-2: #c68143; 84 | 85 | $bc-creative-market: #8ba753; 86 | 87 | $bc-delicious: #3399ff; 88 | 89 | $bc-delicious-2: #222222; 90 | 91 | $bc-delicious-3: #eeeeee; 92 | 93 | $bc-dell: #0085c3; 94 | 95 | $bc-dell-2: #7ab800; 96 | 97 | $bc-dell-3: #f2af00; 98 | 99 | $bc-dell-4: #dc5034; 100 | 101 | $bc-dell-5: #ce1126; 102 | 103 | $bc-dell-6: #b7295a; 104 | 105 | $bc-dell-7: #6e2585; 106 | 107 | $bc-dell-8: #71c6c1; 108 | 109 | $bc-dell-9: #5482ab; 110 | 111 | $bc-dell-10: #009bbb; 112 | 113 | $bc-dell-11: #444444; 114 | 115 | $bc-dell-12: #eeeeee; 116 | 117 | $bc-designmoo: #e64b50; 118 | 119 | $bc-designmoo-2: #dbc65d; 120 | 121 | $bc-deviantart: #4e6252; 122 | 123 | $bc-designer-news: #2d72d9; 124 | 125 | $bc-devour: #ff0000; 126 | 127 | $bc-dewalt: #febd17; 128 | 129 | $bc-disqus: #2e9fff; 130 | 131 | $bc-dribbble: #444444; 132 | 133 | $bc-dribbble-2: #ea4c89; 134 | 135 | $bc-dribbble-3: #8aba56; 136 | 137 | $bc-dribbble-4: #ff8833; 138 | 139 | $bc-dribbble-5: #00b6e3; 140 | 141 | $bc-dribbble-6: #9ba5a8; 142 | 143 | $bc-dropbox: #007ee5; 144 | 145 | $bc-dropbox-2: #7b8994; 146 | 147 | $bc-dropbox-3: #47525d; 148 | 149 | $bc-dropbox-4: #3d464d; 150 | 151 | $bc-drupal: #0077c0; 152 | 153 | $bc-drupal-2: #81ceff; 154 | 155 | $bc-drupal-3: #00598e; 156 | 157 | $bc-dunked: #2f3238; 158 | 159 | $bc-dunked-2: #3fc380; 160 | 161 | $bc-ebay: #e53238; 162 | 163 | $bc-ebay-2: #0064d2; 164 | 165 | $bc-ebay-3: #f5af02; 166 | 167 | $bc-ebay-4: #86b817; 168 | 169 | $bc-engadget: #3399cc; 170 | 171 | $bc-envato: #528036; 172 | 173 | $bc-etsy: #eb6d20; 174 | 175 | $bc-evernote: #5ba525; 176 | 177 | $bc-fab-com: #dd0017; 178 | 179 | $bc-facebook: #3b5998; 180 | 181 | $bc-firefox: #e66000; 182 | 183 | $bc-flickr: #0063dc; 184 | 185 | $bc-flickr-2: #ff0084; 186 | 187 | $bc-forrst: #5b9a68; 188 | 189 | $bc-foursquare: #F94877; 190 | 191 | $bc-garmin: #007cc3; 192 | 193 | $bc-getglue: #2d75a2; 194 | 195 | $bc-gimmebar: #f70078; 196 | 197 | $bc-github: #171515; 198 | 199 | $bc-google: #4285f4; 200 | 201 | $bc-google-2: #db4437; 202 | 203 | $bc-google-3: #f4b400; 204 | 205 | $bc-google-4: #0f9d58; 206 | 207 | $bc-google-5: #e7e6dd; 208 | 209 | $bc-googleplus: #dd4b39; 210 | 211 | $bc-grooveshark: #f77f00; 212 | 213 | $bc-groupon: #82b548; 214 | 215 | $bc-hacker-news: #ff6600; 216 | 217 | $bc-hellowallet: #0085ca; 218 | 219 | $bc-heroku: #c7c5e6; 220 | 221 | $bc-heroku-2: #6567a5; 222 | 223 | $bc-hootsuite: #003366; 224 | 225 | $bc-houzz: #73ba37; 226 | 227 | $bc-hp: #0096d6; 228 | 229 | $bc-html5: #ec6231; 230 | 231 | $bc-hulu: #8cc83b; 232 | 233 | $bc-ibm: #003e6a; 234 | 235 | $bc-ikea: #ffcc33; 236 | 237 | $bc-imdb: #f3ce13; 238 | 239 | $bc-imgur: #85bf25; 240 | 241 | $bc-instagram: #3f729b; 242 | 243 | $bc-instapaper: #1c1c1c; 244 | 245 | $bc-intel: #0071c5; 246 | 247 | $bc-intuit: #365ebf; 248 | 249 | $bc-kickstarter: #76cc1e; 250 | 251 | $bc-kippt: #e03500; 252 | 253 | $bc-kodery: #00af81; 254 | 255 | $bc-lastfm: #c3000d; 256 | 257 | $bc-linkedin: #007bb6; 258 | 259 | $bc-livestream: #cf0005; 260 | 261 | $bc-lumo: #576396; 262 | 263 | $bc-makita: #d82028; 264 | 265 | $bc-makita-2: #29a0b7; 266 | 267 | $bc-mixpanel: #a086d3; 268 | 269 | $bc-meetup: #e51937; 270 | 271 | $bc-netflix: #b9070a; 272 | 273 | $bc-nokia: #183693; 274 | 275 | $bc-nvidia: #76b900; 276 | 277 | $bc-odnoklassniki: #ed812b; 278 | 279 | $bc-opera: #cc0f16; 280 | 281 | $bc-path: #e41f11; 282 | 283 | $bc-paypal-dark: #1e477a; 284 | 285 | $bc-paypal-dark-2: #3b7bbf; 286 | 287 | $bc-pinboard: #0000e6; 288 | 289 | $bc-pinterest: #cc2127; 290 | 291 | $bc-playstation: #665cbe; 292 | 293 | $bc-pocket: #ee4056; 294 | 295 | $bc-prezi: #318bff; 296 | 297 | $bc-pusha: #0f71b4; 298 | 299 | $bc-quora: #a82400; 300 | 301 | $bc-quote-fm: #66ceff; 302 | 303 | $bc-rdio: #008fd5; 304 | 305 | $bc-readability: #9c0000; 306 | 307 | $bc-red-hat: #cc0000; 308 | 309 | $bc-reddit: #cee2f8; 310 | 311 | $bc-reddit-2: #ff4500; 312 | 313 | $bc-resource: #7eb400; 314 | 315 | $bc-rockpack: #0ba6ab; 316 | 317 | $bc-roon: #62b0d9; 318 | 319 | $bc-rss: #ee802f; 320 | 321 | $bc-salesforce: #1798c1; 322 | 323 | $bc-samsung: #0c4da2; 324 | 325 | $bc-shopify: #96bf48; 326 | 327 | $bc-skype: #00aff0; 328 | 329 | $bc-slack: #6fcbdc; 330 | 331 | $bc-slack-2: #e9a821; 332 | 333 | $bc-slack-3: #e11664; 334 | 335 | $bc-slack-4: #3fba91; 336 | 337 | $bc-smashing-magazine: #f0503a; 338 | 339 | $bc-snagajob: #f47a20; 340 | 341 | $bc-softonic: #008ace; 342 | 343 | $bc-soundcloud: #ff7700; 344 | 345 | $bc-space-box: #f86960; 346 | 347 | $bc-spotify: #81b71a; 348 | 349 | $bc-sprint: #fee100; 350 | 351 | $bc-squarespace: #121212; 352 | 353 | $bc-stackoverflow: #ef8236; 354 | 355 | $bc-staples: #cc0000; 356 | 357 | $bc-status-chart: #d7584f; 358 | 359 | $bc-stripe: #008cdd; 360 | 361 | $bc-studyblue: #00afe1; 362 | 363 | $bc-stumbleupon: #f74425; 364 | 365 | $bc-swarm: #fd9627; 366 | 367 | $bc-t-mobile: #ea0a8e; 368 | 369 | $bc-technorati: #40a800; 370 | 371 | $bc-the-next-web: #ef4423; 372 | 373 | $bc-treehouse: #5cb868; 374 | 375 | $bc-trello: #256a92; 376 | 377 | $bc-trulia: #5eab1f; 378 | 379 | $bc-tumblr: #35465c; 380 | 381 | $bc-twitch-tv: #6441a5; 382 | 383 | $bc-twitter: #55acee; 384 | 385 | $bc-typekit: #9aca3c; 386 | 387 | $bc-typo3: #ff8700; 388 | 389 | $bc-ubuntu: #dd4814; 390 | 391 | $bc-ustream: #3388ff; 392 | 393 | $bc-verizon: #ef1d1d; 394 | 395 | $bc-vimeo: #44bbff; 396 | 397 | $bc-vine: #00a478; 398 | 399 | $bc-virb: #06afd8; 400 | 401 | $bc-virgin-media: #cc0000; 402 | 403 | $bc-vkontakte: #45668e; 404 | 405 | $bc-wolfram-alpha: #f68d1e; 406 | 407 | $bc-wooga: #5b009c; 408 | 409 | $bc-wordpress: #21759b; 410 | 411 | $bc-wordpress-2: #d54e21; 412 | 413 | $bc-wordpress-3: #464646; 414 | 415 | $bc-wunderlist: #2b88d9; 416 | 417 | $bc-xbox: #52b043; 418 | 419 | $bc-xing: #126567; 420 | 421 | $bc-yahoo: #720e9e; 422 | 423 | $bc-yandex: #ffcc00; 424 | 425 | $bc-yelp: #c41200; 426 | 427 | $bc-youtube: #cd201f; 428 | 429 | $bc-zalongo: #5498dc; 430 | 431 | $bc-zendesk: #78a300; 432 | 433 | $bc-zerply: #9dcc7a; 434 | 435 | $bc-zootool: #5e8b1d; 436 | 437 | $bc-microsoft: #f65314; 438 | 439 | $bc-microsoft-2: #7cbb00; 440 | 441 | $bc-microsoft-3: #00a1f1; 442 | 443 | $bc-microsoft-4: #ffbb00; 444 | 445 | $bc-windows: #00bcf2; 446 | 447 | $bc-microsoft-office: #ea3e23; 448 | 449 | $bc-windows-phone: #68217a; 450 | 451 | $bc-bing: #ffb900; 452 | 453 | $bc-kiwipay: #00b0df; 454 | 455 | $bc-wordpress-com: #1e8cbe; 456 | 457 | $bc-django: #092e20; 458 | 459 | $bc-geocaching: #4a742c; 460 | 461 | $bc-utorrent: #00853f; 462 | 463 | $bc-arch-linux: #1793d1; 464 | 465 | $bc-arch-linux-2: #333333; 466 | 467 | $bc-gittip: #663300; 468 | 469 | $bc-gittip-2: #339966; 470 | 471 | $bc-flattr: #f67c1a; 472 | 473 | $bc-flattr-2: #338d11; 474 | 475 | $bc-hsbc: #db0011; 476 | 477 | $bc-zopim: #ff9d3b; 478 | 479 | $bc-bitbucket: #205081; 480 | 481 | $bc-strava: #fc4c02; 482 | 483 | $bc-mic: #21c1ff; 484 | -------------------------------------------------------------------------------- /dist/0.5.5/stylus/brand-colors.0.5.5.styl: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.5.5 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat = #fb0a2a; 10 | 11 | $bc-500px = #00aeef; 12 | 13 | $bc-about-me = #00405d; 14 | 15 | $bc-about-me-2 = #062f3c; 16 | 17 | $bc-about-me-3 = #2b82ad; 18 | 19 | $bc-about-me-4 = #cc7a00; 20 | 21 | $bc-about-me-5 = #ffcc33; 22 | 23 | $bc-addvocate = #ff3322; 24 | 25 | $bc-adobe = #ff0000; 26 | 27 | $bc-adobe-2 = #fbb034; 28 | 29 | $bc-adobe-3 = #ffdd00; 30 | 31 | $bc-adobe-4 = #c1d82f; 32 | 33 | $bc-adobe-5 = #00a4e4; 34 | 35 | $bc-adobe-6 = #8a7967; 36 | 37 | $bc-adobe-7 = #6a737b; 38 | 39 | $bc-aim = #ffd900; 40 | 41 | $bc-amazon = #ff9900; 42 | 43 | $bc-amazon-2 = #146eb4; 44 | 45 | $bc-android = #a4c639; 46 | 47 | $bc-angies-list = #7fbb00; 48 | 49 | $bc-aol = #ff0b00; 50 | 51 | $bc-aol-2 = #00c4ff; 52 | 53 | $bc-asana = #1f8dd6; 54 | 55 | $bc-asana-2 = #34ad00; 56 | 57 | $bc-atlassian = #003366; 58 | 59 | $bc-behance = #1769ff; 60 | 61 | $bc-big-cartel = #a0ac48; 62 | 63 | $bc-big-cartel-2 = #70b29c; 64 | 65 | $bc-bitly = #ee6123; 66 | 67 | $bc-bitly-2 = #61b3de; 68 | 69 | $bc-blogger = #f57d00; 70 | 71 | $bc-boeing = #0039a6; 72 | 73 | $bc-booking-com = #003580; 74 | 75 | $bc-carbonmade = #613854; 76 | 77 | $bc-cheddar = #ff7243; 78 | 79 | $bc-coca-cola = #ed1c16; 80 | 81 | $bc-code-school = #616f67; 82 | 83 | $bc-code-school-2 = #c68143; 84 | 85 | $bc-creative-market = #8ba753; 86 | 87 | $bc-delicious = #3399ff; 88 | 89 | $bc-delicious-2 = #222222; 90 | 91 | $bc-delicious-3 = #eeeeee; 92 | 93 | $bc-dell = #0085c3; 94 | 95 | $bc-dell-2 = #7ab800; 96 | 97 | $bc-dell-3 = #f2af00; 98 | 99 | $bc-dell-4 = #dc5034; 100 | 101 | $bc-dell-5 = #ce1126; 102 | 103 | $bc-dell-6 = #b7295a; 104 | 105 | $bc-dell-7 = #6e2585; 106 | 107 | $bc-dell-8 = #71c6c1; 108 | 109 | $bc-dell-9 = #5482ab; 110 | 111 | $bc-dell-10 = #009bbb; 112 | 113 | $bc-dell-11 = #444444; 114 | 115 | $bc-dell-12 = #eeeeee; 116 | 117 | $bc-designmoo = #e64b50; 118 | 119 | $bc-designmoo-2 = #dbc65d; 120 | 121 | $bc-deviantart = #4e6252; 122 | 123 | $bc-designer-news = #2d72d9; 124 | 125 | $bc-devour = #ff0000; 126 | 127 | $bc-dewalt = #febd17; 128 | 129 | $bc-disqus = #2e9fff; 130 | 131 | $bc-dribbble = #444444; 132 | 133 | $bc-dribbble-2 = #ea4c89; 134 | 135 | $bc-dribbble-3 = #8aba56; 136 | 137 | $bc-dribbble-4 = #ff8833; 138 | 139 | $bc-dribbble-5 = #00b6e3; 140 | 141 | $bc-dribbble-6 = #9ba5a8; 142 | 143 | $bc-dropbox = #007ee5; 144 | 145 | $bc-dropbox-2 = #7b8994; 146 | 147 | $bc-dropbox-3 = #47525d; 148 | 149 | $bc-dropbox-4 = #3d464d; 150 | 151 | $bc-drupal = #0077c0; 152 | 153 | $bc-drupal-2 = #81ceff; 154 | 155 | $bc-drupal-3 = #00598e; 156 | 157 | $bc-dunked = #2f3238; 158 | 159 | $bc-dunked-2 = #3fc380; 160 | 161 | $bc-ebay = #e53238; 162 | 163 | $bc-ebay-2 = #0064d2; 164 | 165 | $bc-ebay-3 = #f5af02; 166 | 167 | $bc-ebay-4 = #86b817; 168 | 169 | $bc-engadget = #3399cc; 170 | 171 | $bc-envato = #528036; 172 | 173 | $bc-etsy = #eb6d20; 174 | 175 | $bc-evernote = #5ba525; 176 | 177 | $bc-fab-com = #dd0017; 178 | 179 | $bc-facebook = #3b5998; 180 | 181 | $bc-firefox = #e66000; 182 | 183 | $bc-flickr = #0063dc; 184 | 185 | $bc-flickr-2 = #ff0084; 186 | 187 | $bc-forrst = #5b9a68; 188 | 189 | $bc-foursquare = #F94877; 190 | 191 | $bc-garmin = #007cc3; 192 | 193 | $bc-getglue = #2d75a2; 194 | 195 | $bc-gimmebar = #f70078; 196 | 197 | $bc-github = #171515; 198 | 199 | $bc-google = #4285f4; 200 | 201 | $bc-google-2 = #db4437; 202 | 203 | $bc-google-3 = #f4b400; 204 | 205 | $bc-google-4 = #0f9d58; 206 | 207 | $bc-google-5 = #e7e6dd; 208 | 209 | $bc-googleplus = #dd4b39; 210 | 211 | $bc-grooveshark = #f77f00; 212 | 213 | $bc-groupon = #82b548; 214 | 215 | $bc-hacker-news = #ff6600; 216 | 217 | $bc-hellowallet = #0085ca; 218 | 219 | $bc-heroku = #c7c5e6; 220 | 221 | $bc-heroku-2 = #6567a5; 222 | 223 | $bc-hootsuite = #003366; 224 | 225 | $bc-houzz = #73ba37; 226 | 227 | $bc-hp = #0096d6; 228 | 229 | $bc-html5 = #ec6231; 230 | 231 | $bc-hulu = #8cc83b; 232 | 233 | $bc-ibm = #003e6a; 234 | 235 | $bc-ikea = #ffcc33; 236 | 237 | $bc-imdb = #f3ce13; 238 | 239 | $bc-imgur = #85bf25; 240 | 241 | $bc-instagram = #3f729b; 242 | 243 | $bc-instapaper = #1c1c1c; 244 | 245 | $bc-intel = #0071c5; 246 | 247 | $bc-intuit = #365ebf; 248 | 249 | $bc-kickstarter = #76cc1e; 250 | 251 | $bc-kippt = #e03500; 252 | 253 | $bc-kodery = #00af81; 254 | 255 | $bc-lastfm = #c3000d; 256 | 257 | $bc-linkedin = #007bb6; 258 | 259 | $bc-livestream = #cf0005; 260 | 261 | $bc-lumo = #576396; 262 | 263 | $bc-makita = #d82028; 264 | 265 | $bc-makita-2 = #29a0b7; 266 | 267 | $bc-mixpanel = #a086d3; 268 | 269 | $bc-meetup = #e51937; 270 | 271 | $bc-netflix = #b9070a; 272 | 273 | $bc-nokia = #183693; 274 | 275 | $bc-nvidia = #76b900; 276 | 277 | $bc-odnoklassniki = #ed812b; 278 | 279 | $bc-opera = #cc0f16; 280 | 281 | $bc-path = #e41f11; 282 | 283 | $bc-paypal-dark = #1e477a; 284 | 285 | $bc-paypal-dark-2 = #3b7bbf; 286 | 287 | $bc-pinboard = #0000e6; 288 | 289 | $bc-pinterest = #cc2127; 290 | 291 | $bc-playstation = #665cbe; 292 | 293 | $bc-pocket = #ee4056; 294 | 295 | $bc-prezi = #318bff; 296 | 297 | $bc-pusha = #0f71b4; 298 | 299 | $bc-quora = #a82400; 300 | 301 | $bc-quote-fm = #66ceff; 302 | 303 | $bc-rdio = #008fd5; 304 | 305 | $bc-readability = #9c0000; 306 | 307 | $bc-red-hat = #cc0000; 308 | 309 | $bc-reddit = #cee2f8; 310 | 311 | $bc-reddit-2 = #ff4500; 312 | 313 | $bc-resource = #7eb400; 314 | 315 | $bc-rockpack = #0ba6ab; 316 | 317 | $bc-roon = #62b0d9; 318 | 319 | $bc-rss = #ee802f; 320 | 321 | $bc-salesforce = #1798c1; 322 | 323 | $bc-samsung = #0c4da2; 324 | 325 | $bc-shopify = #96bf48; 326 | 327 | $bc-skype = #00aff0; 328 | 329 | $bc-slack = #6fcbdc; 330 | 331 | $bc-slack-2 = #e9a821; 332 | 333 | $bc-slack-3 = #e11664; 334 | 335 | $bc-slack-4 = #3fba91; 336 | 337 | $bc-smashing-magazine = #f0503a; 338 | 339 | $bc-snagajob = #f47a20; 340 | 341 | $bc-softonic = #008ace; 342 | 343 | $bc-soundcloud = #ff7700; 344 | 345 | $bc-space-box = #f86960; 346 | 347 | $bc-spotify = #81b71a; 348 | 349 | $bc-sprint = #fee100; 350 | 351 | $bc-squarespace = #121212; 352 | 353 | $bc-stackoverflow = #ef8236; 354 | 355 | $bc-staples = #cc0000; 356 | 357 | $bc-status-chart = #d7584f; 358 | 359 | $bc-stripe = #008cdd; 360 | 361 | $bc-studyblue = #00afe1; 362 | 363 | $bc-stumbleupon = #f74425; 364 | 365 | $bc-swarm = #fd9627; 366 | 367 | $bc-t-mobile = #ea0a8e; 368 | 369 | $bc-technorati = #40a800; 370 | 371 | $bc-the-next-web = #ef4423; 372 | 373 | $bc-treehouse = #5cb868; 374 | 375 | $bc-trello = #256a92; 376 | 377 | $bc-trulia = #5eab1f; 378 | 379 | $bc-tumblr = #35465c; 380 | 381 | $bc-twitch-tv = #6441a5; 382 | 383 | $bc-twitter = #55acee; 384 | 385 | $bc-typekit = #9aca3c; 386 | 387 | $bc-typo3 = #ff8700; 388 | 389 | $bc-ubuntu = #dd4814; 390 | 391 | $bc-ustream = #3388ff; 392 | 393 | $bc-verizon = #ef1d1d; 394 | 395 | $bc-vimeo = #44bbff; 396 | 397 | $bc-vine = #00a478; 398 | 399 | $bc-virb = #06afd8; 400 | 401 | $bc-virgin-media = #cc0000; 402 | 403 | $bc-vkontakte = #45668e; 404 | 405 | $bc-wolfram-alpha = #f68d1e; 406 | 407 | $bc-wooga = #5b009c; 408 | 409 | $bc-wordpress = #21759b; 410 | 411 | $bc-wordpress-2 = #d54e21; 412 | 413 | $bc-wordpress-3 = #464646; 414 | 415 | $bc-wunderlist = #2b88d9; 416 | 417 | $bc-xbox = #52b043; 418 | 419 | $bc-xing = #126567; 420 | 421 | $bc-yahoo = #720e9e; 422 | 423 | $bc-yandex = #ffcc00; 424 | 425 | $bc-yelp = #c41200; 426 | 427 | $bc-youtube = #cd201f; 428 | 429 | $bc-zalongo = #5498dc; 430 | 431 | $bc-zendesk = #78a300; 432 | 433 | $bc-zerply = #9dcc7a; 434 | 435 | $bc-zootool = #5e8b1d; 436 | 437 | $bc-microsoft = #f65314; 438 | 439 | $bc-microsoft-2 = #7cbb00; 440 | 441 | $bc-microsoft-3 = #00a1f1; 442 | 443 | $bc-microsoft-4 = #ffbb00; 444 | 445 | $bc-windows = #00bcf2; 446 | 447 | $bc-microsoft-office = #ea3e23; 448 | 449 | $bc-windows-phone = #68217a; 450 | 451 | $bc-bing = #ffb900; 452 | 453 | $bc-kiwipay = #00b0df; 454 | 455 | $bc-wordpress-com = #1e8cbe; 456 | 457 | $bc-django = #092e20; 458 | 459 | $bc-geocaching = #4a742c; 460 | 461 | $bc-utorrent = #00853f; 462 | 463 | $bc-arch-linux = #1793d1; 464 | 465 | $bc-arch-linux-2 = #333333; 466 | 467 | $bc-gittip = #663300; 468 | 469 | $bc-gittip-2 = #339966; 470 | 471 | $bc-flattr = #f67c1a; 472 | 473 | $bc-flattr-2 = #338d11; 474 | 475 | $bc-hsbc = #db0011; 476 | 477 | $bc-zopim = #ff9d3b; 478 | 479 | $bc-bitbucket = #205081; 480 | 481 | $bc-strava = #fc4c02; 482 | 483 | $bc-mic = #21c1ff; 484 | -------------------------------------------------------------------------------- /dist/0.6.0/less/brand-colors.0.6.0.less: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.6.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | @bc-4ormat: #fb0a2a;@bc-500px: #00aeef;@bc-about-me: #00405d;@bc-about-me-2: #062f3c;@bc-about-me-3: #2b82ad;@bc-about-me-4: #cc7a00;@bc-about-me-5: #ffcc33;@bc-addvocate: #ff3322;@bc-adobe: #ff0000;@bc-adobe-2: #fbb034;@bc-adobe-3: #ffdd00;@bc-adobe-4: #c1d82f;@bc-adobe-5: #00a4e4;@bc-adobe-6: #8a7967;@bc-adobe-7: #6a737b;@bc-aim: #ffd900;@bc-airbnb: #fd5c63;@bc-amazon: #ff9900;@bc-amazon-2: #146eb4;@bc-android: #a4c639;@bc-angies-list: #7fbb00;@bc-aol: #ff0b00;@bc-aol-2: #00c4ff;@bc-asana: #1f8dd6;@bc-asana-2: #34ad00;@bc-atlassian: #003366;@bc-behance: #1769ff;@bc-big-cartel: #a0ac48;@bc-big-cartel-2: #70b29c;@bc-bitly: #ee6123;@bc-bitly-2: #61b3de;@bc-blogger: #f57d00;@bc-boeing: #0039a6;@bc-booking-com: #003580;@bc-carbonmade: #613854;@bc-cheddar: #ff7243;@bc-coca-cola: #ed1c16;@bc-code-school: #616f67;@bc-code-school-2: #c68143;@bc-creative-market: #8ba753;@bc-delicious: #3399ff;@bc-delicious-2: #222222;@bc-delicious-3: #eeeeee;@bc-dell: #0085c3;@bc-dell-2: #7ab800;@bc-dell-3: #f2af00;@bc-dell-4: #dc5034;@bc-dell-5: #ce1126;@bc-dell-6: #b7295a;@bc-dell-7: #6e2585;@bc-dell-8: #71c6c1;@bc-dell-9: #5482ab;@bc-dell-10: #009bbb;@bc-dell-11: #444444;@bc-dell-12: #eeeeee;@bc-designmoo: #e64b50;@bc-designmoo-2: #dbc65d;@bc-deviantart: #4e6252;@bc-designer-news: #2d72d9;@bc-devour: #ff0000;@bc-dewalt: #febd17;@bc-disqus: #2e9fff;@bc-dribbble: #444444;@bc-dribbble-2: #ea4c89;@bc-dribbble-3: #8aba56;@bc-dribbble-4: #ff8833;@bc-dribbble-5: #00b6e3;@bc-dribbble-6: #9ba5a8;@bc-dropbox: #007ee5;@bc-dropbox-2: #7b8994;@bc-dropbox-3: #47525d;@bc-dropbox-4: #3d464d;@bc-drupal: #0077c0;@bc-drupal-2: #81ceff;@bc-drupal-3: #00598e;@bc-dunked: #2f3238;@bc-dunked-2: #3fc380;@bc-ebay: #e53238;@bc-ebay-2: #0064d2;@bc-ebay-3: #f5af02;@bc-ebay-4: #86b817;@bc-engadget: #3399cc;@bc-envato: #528036;@bc-etsy: #eb6d20;@bc-evernote: #5ba525;@bc-fab-com: #dd0017;@bc-facebook: #3b5998;@bc-firefox: #e66000;@bc-flickr: #0063dc;@bc-flickr-2: #ff0084;@bc-forrst: #5b9a68;@bc-foursquare: #F94877;@bc-garmin: #007cc3;@bc-getglue: #2d75a2;@bc-gimmebar: #f70078;@bc-github: #171515;@bc-google: #4285f4;@bc-google-2: #db4437;@bc-google-3: #f4b400;@bc-google-4: #0f9d58;@bc-google-5: #e7e6dd;@bc-googleplus: #dd4b39;@bc-grooveshark: #f77f00;@bc-groupon: #82b548;@bc-hacker-news: #ff6600;@bc-hellowallet: #0085ca;@bc-heroku: #c7c5e6;@bc-heroku-2: #6567a5;@bc-hootsuite: #003366;@bc-houzz: #73ba37;@bc-hp: #0096d6;@bc-html5: #ec6231;@bc-hulu: #8cc83b;@bc-ibm: #003e6a;@bc-ikea: #ffcc33;@bc-imdb: #f3ce13;@bc-imgur: #85bf25;@bc-instagram: #3f729b;@bc-instapaper: #1c1c1c;@bc-intel: #0071c5;@bc-intuit: #365ebf;@bc-kickstarter: #76cc1e;@bc-kippt: #e03500;@bc-kodery: #00af81;@bc-lastfm: #c3000d;@bc-linkedin: #007bb6;@bc-livestream: #cf0005;@bc-lumo: #576396;@bc-mailru: #168de2;@bc-mailru-2: #ffa930;@bc-makita: #d82028;@bc-makita-2: #29a0b7;@bc-mixpanel: #a086d3;@bc-meetup: #e51937;@bc-netflix: #b9070a;@bc-nokia: #183693;@bc-nvidia: #76b900;@bc-odnoklassniki: #ed812b;@bc-opera: #cc0f16;@bc-path: #e41f11;@bc-paypal-dark: #1e477a;@bc-paypal-dark-2: #3b7bbf;@bc-pinboard: #0000e6;@bc-pinterest: #cc2127;@bc-playstation: #665cbe;@bc-pocket: #ee4056;@bc-prezi: #318bff;@bc-pusha: #0f71b4;@bc-quora: #a82400;@bc-quote-fm: #66ceff;@bc-rdio: #008fd5;@bc-readability: #9c0000;@bc-red-hat: #cc0000;@bc-reddit: #cee2f8;@bc-reddit-2: #ff4500;@bc-resource: #7eb400;@bc-rockpack: #0ba6ab;@bc-roon: #62b0d9;@bc-rss: #ee802f;@bc-salesforce: #1798c1;@bc-samsung: #0c4da2;@bc-shopify: #96bf48;@bc-skype: #00aff0;@bc-slack: #6fcbdc;@bc-slack-2: #e9a821;@bc-slack-3: #e11664;@bc-slack-4: #3fba91;@bc-smashing-magazine: #f0503a;@bc-snagajob: #f47a20;@bc-softonic: #008ace;@bc-soundcloud: #ff7700;@bc-space-box: #f86960;@bc-spotify: #81b71a;@bc-sprint: #fee100;@bc-squarespace: #121212;@bc-stackoverflow: #ef8236;@bc-staples: #cc0000;@bc-status-chart: #d7584f;@bc-stripe: #008cdd;@bc-studyblue: #00afe1;@bc-stumbleupon: #f74425;@bc-swarm: #fd9627;@bc-t-mobile: #ea0a8e;@bc-technorati: #40a800;@bc-the-next-web: #ef4423;@bc-treehouse: #5cb868;@bc-trello: #256a92;@bc-tripadvisor: #589442;@bc-trulia: #5eab1f;@bc-tumblr: #35465c;@bc-twitch-tv: #6441a5;@bc-twitter: #55acee;@bc-typekit: #9aca3c;@bc-typo3: #ff8700;@bc-uber: #09091a;@bc-uber-2: #c0c0c8;@bc-uber-3: #1fbad6;@bc-ubuntu: #dd4814;@bc-ustream: #3388ff;@bc-verizon: #ef1d1d;@bc-vimeo: #44bbff;@bc-vine: #00a478;@bc-virb: #06afd8;@bc-virgin-media: #cc0000;@bc-vkontakte: #45668e;@bc-wechat: #7bb32e;@bc-weibo: #e71d34;@bc-weixin: #93d034;@bc-whatsapp: #4dc247;@bc-wolfram-alpha: #f68d1e;@bc-wooga: #5b009c;@bc-wordpress: #21759b;@bc-wordpress-2: #d54e21;@bc-wordpress-3: #464646;@bc-wunderlist: #2b88d9;@bc-xbox: #52b043;@bc-xing: #126567;@bc-yahoo: #720e9e;@bc-yandex: #ffcc00;@bc-yelp: #c41200;@bc-youtube: #cd201f;@bc-zalongo: #5498dc;@bc-zendesk: #78a300;@bc-zerply: #9dcc7a;@bc-zootool: #5e8b1d;@bc-microsoft: #f65314;@bc-microsoft-2: #7cbb00;@bc-microsoft-3: #00a1f1;@bc-microsoft-4: #ffbb00;@bc-windows: #00bcf2;@bc-microsoft-office: #ea3e23;@bc-windows-phone: #68217a;@bc-bing: #ffb900;@bc-kiwipay: #00b0df;@bc-wordpress-com: #1e8cbe;@bc-django: #092e20;@bc-geocaching: #4a742c;@bc-utorrent: #00853f;@bc-arch-linux: #1793d1;@bc-arch-linux-2: #333333;@bc-gittip: #663300;@bc-gittip-2: #339966;@bc-flattr: #f67c1a;@bc-flattr-2: #338d11;@bc-hsbc: #db0011;@bc-zopim: #ff9d3b;@bc-bitbucket: #205081;@bc-strava: #fc4c02;@bc-mic: #21c1ff; -------------------------------------------------------------------------------- /dist/0.6.0/sass/brand-colors.0.6.0.sass: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.6.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-airbnb: #fd5c63; 42 | 43 | $bc-amazon: #ff9900; 44 | 45 | $bc-amazon-2: #146eb4; 46 | 47 | $bc-android: #a4c639; 48 | 49 | $bc-angies-list: #7fbb00; 50 | 51 | $bc-aol: #ff0b00; 52 | 53 | $bc-aol-2: #00c4ff; 54 | 55 | $bc-asana: #1f8dd6; 56 | 57 | $bc-asana-2: #34ad00; 58 | 59 | $bc-atlassian: #003366; 60 | 61 | $bc-behance: #1769ff; 62 | 63 | $bc-big-cartel: #a0ac48; 64 | 65 | $bc-big-cartel-2: #70b29c; 66 | 67 | $bc-bitly: #ee6123; 68 | 69 | $bc-bitly-2: #61b3de; 70 | 71 | $bc-blogger: #f57d00; 72 | 73 | $bc-boeing: #0039a6; 74 | 75 | $bc-booking-com: #003580; 76 | 77 | $bc-carbonmade: #613854; 78 | 79 | $bc-cheddar: #ff7243; 80 | 81 | $bc-coca-cola: #ed1c16; 82 | 83 | $bc-code-school: #616f67; 84 | 85 | $bc-code-school-2: #c68143; 86 | 87 | $bc-creative-market: #8ba753; 88 | 89 | $bc-delicious: #3399ff; 90 | 91 | $bc-delicious-2: #222222; 92 | 93 | $bc-delicious-3: #eeeeee; 94 | 95 | $bc-dell: #0085c3; 96 | 97 | $bc-dell-2: #7ab800; 98 | 99 | $bc-dell-3: #f2af00; 100 | 101 | $bc-dell-4: #dc5034; 102 | 103 | $bc-dell-5: #ce1126; 104 | 105 | $bc-dell-6: #b7295a; 106 | 107 | $bc-dell-7: #6e2585; 108 | 109 | $bc-dell-8: #71c6c1; 110 | 111 | $bc-dell-9: #5482ab; 112 | 113 | $bc-dell-10: #009bbb; 114 | 115 | $bc-dell-11: #444444; 116 | 117 | $bc-dell-12: #eeeeee; 118 | 119 | $bc-designmoo: #e64b50; 120 | 121 | $bc-designmoo-2: #dbc65d; 122 | 123 | $bc-deviantart: #4e6252; 124 | 125 | $bc-designer-news: #2d72d9; 126 | 127 | $bc-devour: #ff0000; 128 | 129 | $bc-dewalt: #febd17; 130 | 131 | $bc-disqus: #2e9fff; 132 | 133 | $bc-dribbble: #444444; 134 | 135 | $bc-dribbble-2: #ea4c89; 136 | 137 | $bc-dribbble-3: #8aba56; 138 | 139 | $bc-dribbble-4: #ff8833; 140 | 141 | $bc-dribbble-5: #00b6e3; 142 | 143 | $bc-dribbble-6: #9ba5a8; 144 | 145 | $bc-dropbox: #007ee5; 146 | 147 | $bc-dropbox-2: #7b8994; 148 | 149 | $bc-dropbox-3: #47525d; 150 | 151 | $bc-dropbox-4: #3d464d; 152 | 153 | $bc-drupal: #0077c0; 154 | 155 | $bc-drupal-2: #81ceff; 156 | 157 | $bc-drupal-3: #00598e; 158 | 159 | $bc-dunked: #2f3238; 160 | 161 | $bc-dunked-2: #3fc380; 162 | 163 | $bc-ebay: #e53238; 164 | 165 | $bc-ebay-2: #0064d2; 166 | 167 | $bc-ebay-3: #f5af02; 168 | 169 | $bc-ebay-4: #86b817; 170 | 171 | $bc-engadget: #3399cc; 172 | 173 | $bc-envato: #528036; 174 | 175 | $bc-etsy: #eb6d20; 176 | 177 | $bc-evernote: #5ba525; 178 | 179 | $bc-fab-com: #dd0017; 180 | 181 | $bc-facebook: #3b5998; 182 | 183 | $bc-firefox: #e66000; 184 | 185 | $bc-flickr: #0063dc; 186 | 187 | $bc-flickr-2: #ff0084; 188 | 189 | $bc-forrst: #5b9a68; 190 | 191 | $bc-foursquare: #F94877; 192 | 193 | $bc-garmin: #007cc3; 194 | 195 | $bc-getglue: #2d75a2; 196 | 197 | $bc-gimmebar: #f70078; 198 | 199 | $bc-github: #171515; 200 | 201 | $bc-google: #4285f4; 202 | 203 | $bc-google-2: #db4437; 204 | 205 | $bc-google-3: #f4b400; 206 | 207 | $bc-google-4: #0f9d58; 208 | 209 | $bc-google-5: #e7e6dd; 210 | 211 | $bc-googleplus: #dd4b39; 212 | 213 | $bc-grooveshark: #f77f00; 214 | 215 | $bc-groupon: #82b548; 216 | 217 | $bc-hacker-news: #ff6600; 218 | 219 | $bc-hellowallet: #0085ca; 220 | 221 | $bc-heroku: #c7c5e6; 222 | 223 | $bc-heroku-2: #6567a5; 224 | 225 | $bc-hootsuite: #003366; 226 | 227 | $bc-houzz: #73ba37; 228 | 229 | $bc-hp: #0096d6; 230 | 231 | $bc-html5: #ec6231; 232 | 233 | $bc-hulu: #8cc83b; 234 | 235 | $bc-ibm: #003e6a; 236 | 237 | $bc-ikea: #ffcc33; 238 | 239 | $bc-imdb: #f3ce13; 240 | 241 | $bc-imgur: #85bf25; 242 | 243 | $bc-instagram: #3f729b; 244 | 245 | $bc-instapaper: #1c1c1c; 246 | 247 | $bc-intel: #0071c5; 248 | 249 | $bc-intuit: #365ebf; 250 | 251 | $bc-kickstarter: #76cc1e; 252 | 253 | $bc-kippt: #e03500; 254 | 255 | $bc-kodery: #00af81; 256 | 257 | $bc-lastfm: #c3000d; 258 | 259 | $bc-linkedin: #007bb6; 260 | 261 | $bc-livestream: #cf0005; 262 | 263 | $bc-lumo: #576396; 264 | 265 | $bc-mailru: #168de2; 266 | 267 | $bc-mailru-2: #ffa930; 268 | 269 | $bc-makita: #d82028; 270 | 271 | $bc-makita-2: #29a0b7; 272 | 273 | $bc-mixpanel: #a086d3; 274 | 275 | $bc-meetup: #e51937; 276 | 277 | $bc-netflix: #b9070a; 278 | 279 | $bc-nokia: #183693; 280 | 281 | $bc-nvidia: #76b900; 282 | 283 | $bc-odnoklassniki: #ed812b; 284 | 285 | $bc-opera: #cc0f16; 286 | 287 | $bc-path: #e41f11; 288 | 289 | $bc-paypal-dark: #1e477a; 290 | 291 | $bc-paypal-dark-2: #3b7bbf; 292 | 293 | $bc-pinboard: #0000e6; 294 | 295 | $bc-pinterest: #cc2127; 296 | 297 | $bc-playstation: #665cbe; 298 | 299 | $bc-pocket: #ee4056; 300 | 301 | $bc-prezi: #318bff; 302 | 303 | $bc-pusha: #0f71b4; 304 | 305 | $bc-quora: #a82400; 306 | 307 | $bc-quote-fm: #66ceff; 308 | 309 | $bc-rdio: #008fd5; 310 | 311 | $bc-readability: #9c0000; 312 | 313 | $bc-red-hat: #cc0000; 314 | 315 | $bc-reddit: #cee2f8; 316 | 317 | $bc-reddit-2: #ff4500; 318 | 319 | $bc-resource: #7eb400; 320 | 321 | $bc-rockpack: #0ba6ab; 322 | 323 | $bc-roon: #62b0d9; 324 | 325 | $bc-rss: #ee802f; 326 | 327 | $bc-salesforce: #1798c1; 328 | 329 | $bc-samsung: #0c4da2; 330 | 331 | $bc-shopify: #96bf48; 332 | 333 | $bc-skype: #00aff0; 334 | 335 | $bc-slack: #6fcbdc; 336 | 337 | $bc-slack-2: #e9a821; 338 | 339 | $bc-slack-3: #e11664; 340 | 341 | $bc-slack-4: #3fba91; 342 | 343 | $bc-smashing-magazine: #f0503a; 344 | 345 | $bc-snagajob: #f47a20; 346 | 347 | $bc-softonic: #008ace; 348 | 349 | $bc-soundcloud: #ff7700; 350 | 351 | $bc-space-box: #f86960; 352 | 353 | $bc-spotify: #81b71a; 354 | 355 | $bc-sprint: #fee100; 356 | 357 | $bc-squarespace: #121212; 358 | 359 | $bc-stackoverflow: #ef8236; 360 | 361 | $bc-staples: #cc0000; 362 | 363 | $bc-status-chart: #d7584f; 364 | 365 | $bc-stripe: #008cdd; 366 | 367 | $bc-studyblue: #00afe1; 368 | 369 | $bc-stumbleupon: #f74425; 370 | 371 | $bc-swarm: #fd9627; 372 | 373 | $bc-t-mobile: #ea0a8e; 374 | 375 | $bc-technorati: #40a800; 376 | 377 | $bc-the-next-web: #ef4423; 378 | 379 | $bc-treehouse: #5cb868; 380 | 381 | $bc-trello: #256a92; 382 | 383 | $bc-tripadvisor: #589442; 384 | 385 | $bc-trulia: #5eab1f; 386 | 387 | $bc-tumblr: #35465c; 388 | 389 | $bc-twitch-tv: #6441a5; 390 | 391 | $bc-twitter: #55acee; 392 | 393 | $bc-typekit: #9aca3c; 394 | 395 | $bc-typo3: #ff8700; 396 | 397 | $bc-uber: #09091a; 398 | 399 | $bc-uber-2: #c0c0c8; 400 | 401 | $bc-uber-3: #1fbad6; 402 | 403 | $bc-ubuntu: #dd4814; 404 | 405 | $bc-ustream: #3388ff; 406 | 407 | $bc-verizon: #ef1d1d; 408 | 409 | $bc-vimeo: #44bbff; 410 | 411 | $bc-vine: #00a478; 412 | 413 | $bc-virb: #06afd8; 414 | 415 | $bc-virgin-media: #cc0000; 416 | 417 | $bc-vkontakte: #45668e; 418 | 419 | $bc-wechat: #7bb32e; 420 | 421 | $bc-weibo: #e71d34; 422 | 423 | $bc-weixin: #93d034; 424 | 425 | $bc-whatsapp: #4dc247; 426 | 427 | $bc-wolfram-alpha: #f68d1e; 428 | 429 | $bc-wooga: #5b009c; 430 | 431 | $bc-wordpress: #21759b; 432 | 433 | $bc-wordpress-2: #d54e21; 434 | 435 | $bc-wordpress-3: #464646; 436 | 437 | $bc-wunderlist: #2b88d9; 438 | 439 | $bc-xbox: #52b043; 440 | 441 | $bc-xing: #126567; 442 | 443 | $bc-yahoo: #720e9e; 444 | 445 | $bc-yandex: #ffcc00; 446 | 447 | $bc-yelp: #c41200; 448 | 449 | $bc-youtube: #cd201f; 450 | 451 | $bc-zalongo: #5498dc; 452 | 453 | $bc-zendesk: #78a300; 454 | 455 | $bc-zerply: #9dcc7a; 456 | 457 | $bc-zootool: #5e8b1d; 458 | 459 | $bc-microsoft: #f65314; 460 | 461 | $bc-microsoft-2: #7cbb00; 462 | 463 | $bc-microsoft-3: #00a1f1; 464 | 465 | $bc-microsoft-4: #ffbb00; 466 | 467 | $bc-windows: #00bcf2; 468 | 469 | $bc-microsoft-office: #ea3e23; 470 | 471 | $bc-windows-phone: #68217a; 472 | 473 | $bc-bing: #ffb900; 474 | 475 | $bc-kiwipay: #00b0df; 476 | 477 | $bc-wordpress-com: #1e8cbe; 478 | 479 | $bc-django: #092e20; 480 | 481 | $bc-geocaching: #4a742c; 482 | 483 | $bc-utorrent: #00853f; 484 | 485 | $bc-arch-linux: #1793d1; 486 | 487 | $bc-arch-linux-2: #333333; 488 | 489 | $bc-gittip: #663300; 490 | 491 | $bc-gittip-2: #339966; 492 | 493 | $bc-flattr: #f67c1a; 494 | 495 | $bc-flattr-2: #338d11; 496 | 497 | $bc-hsbc: #db0011; 498 | 499 | $bc-zopim: #ff9d3b; 500 | 501 | $bc-bitbucket: #205081; 502 | 503 | $bc-strava: #fc4c02; 504 | 505 | $bc-mic: #21c1ff; 506 | -------------------------------------------------------------------------------- /dist/0.6.0/scss/brand-colors.0.6.0.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.6.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat: #fb0a2a; 10 | 11 | $bc-500px: #00aeef; 12 | 13 | $bc-about-me: #00405d; 14 | 15 | $bc-about-me-2: #062f3c; 16 | 17 | $bc-about-me-3: #2b82ad; 18 | 19 | $bc-about-me-4: #cc7a00; 20 | 21 | $bc-about-me-5: #ffcc33; 22 | 23 | $bc-addvocate: #ff3322; 24 | 25 | $bc-adobe: #ff0000; 26 | 27 | $bc-adobe-2: #fbb034; 28 | 29 | $bc-adobe-3: #ffdd00; 30 | 31 | $bc-adobe-4: #c1d82f; 32 | 33 | $bc-adobe-5: #00a4e4; 34 | 35 | $bc-adobe-6: #8a7967; 36 | 37 | $bc-adobe-7: #6a737b; 38 | 39 | $bc-aim: #ffd900; 40 | 41 | $bc-airbnb: #fd5c63; 42 | 43 | $bc-amazon: #ff9900; 44 | 45 | $bc-amazon-2: #146eb4; 46 | 47 | $bc-android: #a4c639; 48 | 49 | $bc-angies-list: #7fbb00; 50 | 51 | $bc-aol: #ff0b00; 52 | 53 | $bc-aol-2: #00c4ff; 54 | 55 | $bc-asana: #1f8dd6; 56 | 57 | $bc-asana-2: #34ad00; 58 | 59 | $bc-atlassian: #003366; 60 | 61 | $bc-behance: #1769ff; 62 | 63 | $bc-big-cartel: #a0ac48; 64 | 65 | $bc-big-cartel-2: #70b29c; 66 | 67 | $bc-bitly: #ee6123; 68 | 69 | $bc-bitly-2: #61b3de; 70 | 71 | $bc-blogger: #f57d00; 72 | 73 | $bc-boeing: #0039a6; 74 | 75 | $bc-booking-com: #003580; 76 | 77 | $bc-carbonmade: #613854; 78 | 79 | $bc-cheddar: #ff7243; 80 | 81 | $bc-coca-cola: #ed1c16; 82 | 83 | $bc-code-school: #616f67; 84 | 85 | $bc-code-school-2: #c68143; 86 | 87 | $bc-creative-market: #8ba753; 88 | 89 | $bc-delicious: #3399ff; 90 | 91 | $bc-delicious-2: #222222; 92 | 93 | $bc-delicious-3: #eeeeee; 94 | 95 | $bc-dell: #0085c3; 96 | 97 | $bc-dell-2: #7ab800; 98 | 99 | $bc-dell-3: #f2af00; 100 | 101 | $bc-dell-4: #dc5034; 102 | 103 | $bc-dell-5: #ce1126; 104 | 105 | $bc-dell-6: #b7295a; 106 | 107 | $bc-dell-7: #6e2585; 108 | 109 | $bc-dell-8: #71c6c1; 110 | 111 | $bc-dell-9: #5482ab; 112 | 113 | $bc-dell-10: #009bbb; 114 | 115 | $bc-dell-11: #444444; 116 | 117 | $bc-dell-12: #eeeeee; 118 | 119 | $bc-designmoo: #e64b50; 120 | 121 | $bc-designmoo-2: #dbc65d; 122 | 123 | $bc-deviantart: #4e6252; 124 | 125 | $bc-designer-news: #2d72d9; 126 | 127 | $bc-devour: #ff0000; 128 | 129 | $bc-dewalt: #febd17; 130 | 131 | $bc-disqus: #2e9fff; 132 | 133 | $bc-dribbble: #444444; 134 | 135 | $bc-dribbble-2: #ea4c89; 136 | 137 | $bc-dribbble-3: #8aba56; 138 | 139 | $bc-dribbble-4: #ff8833; 140 | 141 | $bc-dribbble-5: #00b6e3; 142 | 143 | $bc-dribbble-6: #9ba5a8; 144 | 145 | $bc-dropbox: #007ee5; 146 | 147 | $bc-dropbox-2: #7b8994; 148 | 149 | $bc-dropbox-3: #47525d; 150 | 151 | $bc-dropbox-4: #3d464d; 152 | 153 | $bc-drupal: #0077c0; 154 | 155 | $bc-drupal-2: #81ceff; 156 | 157 | $bc-drupal-3: #00598e; 158 | 159 | $bc-dunked: #2f3238; 160 | 161 | $bc-dunked-2: #3fc380; 162 | 163 | $bc-ebay: #e53238; 164 | 165 | $bc-ebay-2: #0064d2; 166 | 167 | $bc-ebay-3: #f5af02; 168 | 169 | $bc-ebay-4: #86b817; 170 | 171 | $bc-engadget: #3399cc; 172 | 173 | $bc-envato: #528036; 174 | 175 | $bc-etsy: #eb6d20; 176 | 177 | $bc-evernote: #5ba525; 178 | 179 | $bc-fab-com: #dd0017; 180 | 181 | $bc-facebook: #3b5998; 182 | 183 | $bc-firefox: #e66000; 184 | 185 | $bc-flickr: #0063dc; 186 | 187 | $bc-flickr-2: #ff0084; 188 | 189 | $bc-forrst: #5b9a68; 190 | 191 | $bc-foursquare: #F94877; 192 | 193 | $bc-garmin: #007cc3; 194 | 195 | $bc-getglue: #2d75a2; 196 | 197 | $bc-gimmebar: #f70078; 198 | 199 | $bc-github: #171515; 200 | 201 | $bc-google: #4285f4; 202 | 203 | $bc-google-2: #db4437; 204 | 205 | $bc-google-3: #f4b400; 206 | 207 | $bc-google-4: #0f9d58; 208 | 209 | $bc-google-5: #e7e6dd; 210 | 211 | $bc-googleplus: #dd4b39; 212 | 213 | $bc-grooveshark: #f77f00; 214 | 215 | $bc-groupon: #82b548; 216 | 217 | $bc-hacker-news: #ff6600; 218 | 219 | $bc-hellowallet: #0085ca; 220 | 221 | $bc-heroku: #c7c5e6; 222 | 223 | $bc-heroku-2: #6567a5; 224 | 225 | $bc-hootsuite: #003366; 226 | 227 | $bc-houzz: #73ba37; 228 | 229 | $bc-hp: #0096d6; 230 | 231 | $bc-html5: #ec6231; 232 | 233 | $bc-hulu: #8cc83b; 234 | 235 | $bc-ibm: #003e6a; 236 | 237 | $bc-ikea: #ffcc33; 238 | 239 | $bc-imdb: #f3ce13; 240 | 241 | $bc-imgur: #85bf25; 242 | 243 | $bc-instagram: #3f729b; 244 | 245 | $bc-instapaper: #1c1c1c; 246 | 247 | $bc-intel: #0071c5; 248 | 249 | $bc-intuit: #365ebf; 250 | 251 | $bc-kickstarter: #76cc1e; 252 | 253 | $bc-kippt: #e03500; 254 | 255 | $bc-kodery: #00af81; 256 | 257 | $bc-lastfm: #c3000d; 258 | 259 | $bc-linkedin: #007bb6; 260 | 261 | $bc-livestream: #cf0005; 262 | 263 | $bc-lumo: #576396; 264 | 265 | $bc-mailru: #168de2; 266 | 267 | $bc-mailru-2: #ffa930; 268 | 269 | $bc-makita: #d82028; 270 | 271 | $bc-makita-2: #29a0b7; 272 | 273 | $bc-mixpanel: #a086d3; 274 | 275 | $bc-meetup: #e51937; 276 | 277 | $bc-netflix: #b9070a; 278 | 279 | $bc-nokia: #183693; 280 | 281 | $bc-nvidia: #76b900; 282 | 283 | $bc-odnoklassniki: #ed812b; 284 | 285 | $bc-opera: #cc0f16; 286 | 287 | $bc-path: #e41f11; 288 | 289 | $bc-paypal-dark: #1e477a; 290 | 291 | $bc-paypal-dark-2: #3b7bbf; 292 | 293 | $bc-pinboard: #0000e6; 294 | 295 | $bc-pinterest: #cc2127; 296 | 297 | $bc-playstation: #665cbe; 298 | 299 | $bc-pocket: #ee4056; 300 | 301 | $bc-prezi: #318bff; 302 | 303 | $bc-pusha: #0f71b4; 304 | 305 | $bc-quora: #a82400; 306 | 307 | $bc-quote-fm: #66ceff; 308 | 309 | $bc-rdio: #008fd5; 310 | 311 | $bc-readability: #9c0000; 312 | 313 | $bc-red-hat: #cc0000; 314 | 315 | $bc-reddit: #cee2f8; 316 | 317 | $bc-reddit-2: #ff4500; 318 | 319 | $bc-resource: #7eb400; 320 | 321 | $bc-rockpack: #0ba6ab; 322 | 323 | $bc-roon: #62b0d9; 324 | 325 | $bc-rss: #ee802f; 326 | 327 | $bc-salesforce: #1798c1; 328 | 329 | $bc-samsung: #0c4da2; 330 | 331 | $bc-shopify: #96bf48; 332 | 333 | $bc-skype: #00aff0; 334 | 335 | $bc-slack: #6fcbdc; 336 | 337 | $bc-slack-2: #e9a821; 338 | 339 | $bc-slack-3: #e11664; 340 | 341 | $bc-slack-4: #3fba91; 342 | 343 | $bc-smashing-magazine: #f0503a; 344 | 345 | $bc-snagajob: #f47a20; 346 | 347 | $bc-softonic: #008ace; 348 | 349 | $bc-soundcloud: #ff7700; 350 | 351 | $bc-space-box: #f86960; 352 | 353 | $bc-spotify: #81b71a; 354 | 355 | $bc-sprint: #fee100; 356 | 357 | $bc-squarespace: #121212; 358 | 359 | $bc-stackoverflow: #ef8236; 360 | 361 | $bc-staples: #cc0000; 362 | 363 | $bc-status-chart: #d7584f; 364 | 365 | $bc-stripe: #008cdd; 366 | 367 | $bc-studyblue: #00afe1; 368 | 369 | $bc-stumbleupon: #f74425; 370 | 371 | $bc-swarm: #fd9627; 372 | 373 | $bc-t-mobile: #ea0a8e; 374 | 375 | $bc-technorati: #40a800; 376 | 377 | $bc-the-next-web: #ef4423; 378 | 379 | $bc-treehouse: #5cb868; 380 | 381 | $bc-trello: #256a92; 382 | 383 | $bc-tripadvisor: #589442; 384 | 385 | $bc-trulia: #5eab1f; 386 | 387 | $bc-tumblr: #35465c; 388 | 389 | $bc-twitch-tv: #6441a5; 390 | 391 | $bc-twitter: #55acee; 392 | 393 | $bc-typekit: #9aca3c; 394 | 395 | $bc-typo3: #ff8700; 396 | 397 | $bc-uber: #09091a; 398 | 399 | $bc-uber-2: #c0c0c8; 400 | 401 | $bc-uber-3: #1fbad6; 402 | 403 | $bc-ubuntu: #dd4814; 404 | 405 | $bc-ustream: #3388ff; 406 | 407 | $bc-verizon: #ef1d1d; 408 | 409 | $bc-vimeo: #44bbff; 410 | 411 | $bc-vine: #00a478; 412 | 413 | $bc-virb: #06afd8; 414 | 415 | $bc-virgin-media: #cc0000; 416 | 417 | $bc-vkontakte: #45668e; 418 | 419 | $bc-wechat: #7bb32e; 420 | 421 | $bc-weibo: #e71d34; 422 | 423 | $bc-weixin: #93d034; 424 | 425 | $bc-whatsapp: #4dc247; 426 | 427 | $bc-wolfram-alpha: #f68d1e; 428 | 429 | $bc-wooga: #5b009c; 430 | 431 | $bc-wordpress: #21759b; 432 | 433 | $bc-wordpress-2: #d54e21; 434 | 435 | $bc-wordpress-3: #464646; 436 | 437 | $bc-wunderlist: #2b88d9; 438 | 439 | $bc-xbox: #52b043; 440 | 441 | $bc-xing: #126567; 442 | 443 | $bc-yahoo: #720e9e; 444 | 445 | $bc-yandex: #ffcc00; 446 | 447 | $bc-yelp: #c41200; 448 | 449 | $bc-youtube: #cd201f; 450 | 451 | $bc-zalongo: #5498dc; 452 | 453 | $bc-zendesk: #78a300; 454 | 455 | $bc-zerply: #9dcc7a; 456 | 457 | $bc-zootool: #5e8b1d; 458 | 459 | $bc-microsoft: #f65314; 460 | 461 | $bc-microsoft-2: #7cbb00; 462 | 463 | $bc-microsoft-3: #00a1f1; 464 | 465 | $bc-microsoft-4: #ffbb00; 466 | 467 | $bc-windows: #00bcf2; 468 | 469 | $bc-microsoft-office: #ea3e23; 470 | 471 | $bc-windows-phone: #68217a; 472 | 473 | $bc-bing: #ffb900; 474 | 475 | $bc-kiwipay: #00b0df; 476 | 477 | $bc-wordpress-com: #1e8cbe; 478 | 479 | $bc-django: #092e20; 480 | 481 | $bc-geocaching: #4a742c; 482 | 483 | $bc-utorrent: #00853f; 484 | 485 | $bc-arch-linux: #1793d1; 486 | 487 | $bc-arch-linux-2: #333333; 488 | 489 | $bc-gittip: #663300; 490 | 491 | $bc-gittip-2: #339966; 492 | 493 | $bc-flattr: #f67c1a; 494 | 495 | $bc-flattr-2: #338d11; 496 | 497 | $bc-hsbc: #db0011; 498 | 499 | $bc-zopim: #ff9d3b; 500 | 501 | $bc-bitbucket: #205081; 502 | 503 | $bc-strava: #fc4c02; 504 | 505 | $bc-mic: #21c1ff; 506 | -------------------------------------------------------------------------------- /dist/0.6.0/stylus/brand-colors.0.6.0.styl: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors 0.6.0 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2014 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | 9 | $bc-4ormat = #fb0a2a; 10 | 11 | $bc-500px = #00aeef; 12 | 13 | $bc-about-me = #00405d; 14 | 15 | $bc-about-me-2 = #062f3c; 16 | 17 | $bc-about-me-3 = #2b82ad; 18 | 19 | $bc-about-me-4 = #cc7a00; 20 | 21 | $bc-about-me-5 = #ffcc33; 22 | 23 | $bc-addvocate = #ff3322; 24 | 25 | $bc-adobe = #ff0000; 26 | 27 | $bc-adobe-2 = #fbb034; 28 | 29 | $bc-adobe-3 = #ffdd00; 30 | 31 | $bc-adobe-4 = #c1d82f; 32 | 33 | $bc-adobe-5 = #00a4e4; 34 | 35 | $bc-adobe-6 = #8a7967; 36 | 37 | $bc-adobe-7 = #6a737b; 38 | 39 | $bc-aim = #ffd900; 40 | 41 | $bc-airbnb = #fd5c63; 42 | 43 | $bc-amazon = #ff9900; 44 | 45 | $bc-amazon-2 = #146eb4; 46 | 47 | $bc-android = #a4c639; 48 | 49 | $bc-angies-list = #7fbb00; 50 | 51 | $bc-aol = #ff0b00; 52 | 53 | $bc-aol-2 = #00c4ff; 54 | 55 | $bc-asana = #1f8dd6; 56 | 57 | $bc-asana-2 = #34ad00; 58 | 59 | $bc-atlassian = #003366; 60 | 61 | $bc-behance = #1769ff; 62 | 63 | $bc-big-cartel = #a0ac48; 64 | 65 | $bc-big-cartel-2 = #70b29c; 66 | 67 | $bc-bitly = #ee6123; 68 | 69 | $bc-bitly-2 = #61b3de; 70 | 71 | $bc-blogger = #f57d00; 72 | 73 | $bc-boeing = #0039a6; 74 | 75 | $bc-booking-com = #003580; 76 | 77 | $bc-carbonmade = #613854; 78 | 79 | $bc-cheddar = #ff7243; 80 | 81 | $bc-coca-cola = #ed1c16; 82 | 83 | $bc-code-school = #616f67; 84 | 85 | $bc-code-school-2 = #c68143; 86 | 87 | $bc-creative-market = #8ba753; 88 | 89 | $bc-delicious = #3399ff; 90 | 91 | $bc-delicious-2 = #222222; 92 | 93 | $bc-delicious-3 = #eeeeee; 94 | 95 | $bc-dell = #0085c3; 96 | 97 | $bc-dell-2 = #7ab800; 98 | 99 | $bc-dell-3 = #f2af00; 100 | 101 | $bc-dell-4 = #dc5034; 102 | 103 | $bc-dell-5 = #ce1126; 104 | 105 | $bc-dell-6 = #b7295a; 106 | 107 | $bc-dell-7 = #6e2585; 108 | 109 | $bc-dell-8 = #71c6c1; 110 | 111 | $bc-dell-9 = #5482ab; 112 | 113 | $bc-dell-10 = #009bbb; 114 | 115 | $bc-dell-11 = #444444; 116 | 117 | $bc-dell-12 = #eeeeee; 118 | 119 | $bc-designmoo = #e64b50; 120 | 121 | $bc-designmoo-2 = #dbc65d; 122 | 123 | $bc-deviantart = #4e6252; 124 | 125 | $bc-designer-news = #2d72d9; 126 | 127 | $bc-devour = #ff0000; 128 | 129 | $bc-dewalt = #febd17; 130 | 131 | $bc-disqus = #2e9fff; 132 | 133 | $bc-dribbble = #444444; 134 | 135 | $bc-dribbble-2 = #ea4c89; 136 | 137 | $bc-dribbble-3 = #8aba56; 138 | 139 | $bc-dribbble-4 = #ff8833; 140 | 141 | $bc-dribbble-5 = #00b6e3; 142 | 143 | $bc-dribbble-6 = #9ba5a8; 144 | 145 | $bc-dropbox = #007ee5; 146 | 147 | $bc-dropbox-2 = #7b8994; 148 | 149 | $bc-dropbox-3 = #47525d; 150 | 151 | $bc-dropbox-4 = #3d464d; 152 | 153 | $bc-drupal = #0077c0; 154 | 155 | $bc-drupal-2 = #81ceff; 156 | 157 | $bc-drupal-3 = #00598e; 158 | 159 | $bc-dunked = #2f3238; 160 | 161 | $bc-dunked-2 = #3fc380; 162 | 163 | $bc-ebay = #e53238; 164 | 165 | $bc-ebay-2 = #0064d2; 166 | 167 | $bc-ebay-3 = #f5af02; 168 | 169 | $bc-ebay-4 = #86b817; 170 | 171 | $bc-engadget = #3399cc; 172 | 173 | $bc-envato = #528036; 174 | 175 | $bc-etsy = #eb6d20; 176 | 177 | $bc-evernote = #5ba525; 178 | 179 | $bc-fab-com = #dd0017; 180 | 181 | $bc-facebook = #3b5998; 182 | 183 | $bc-firefox = #e66000; 184 | 185 | $bc-flickr = #0063dc; 186 | 187 | $bc-flickr-2 = #ff0084; 188 | 189 | $bc-forrst = #5b9a68; 190 | 191 | $bc-foursquare = #F94877; 192 | 193 | $bc-garmin = #007cc3; 194 | 195 | $bc-getglue = #2d75a2; 196 | 197 | $bc-gimmebar = #f70078; 198 | 199 | $bc-github = #171515; 200 | 201 | $bc-google = #4285f4; 202 | 203 | $bc-google-2 = #db4437; 204 | 205 | $bc-google-3 = #f4b400; 206 | 207 | $bc-google-4 = #0f9d58; 208 | 209 | $bc-google-5 = #e7e6dd; 210 | 211 | $bc-googleplus = #dd4b39; 212 | 213 | $bc-grooveshark = #f77f00; 214 | 215 | $bc-groupon = #82b548; 216 | 217 | $bc-hacker-news = #ff6600; 218 | 219 | $bc-hellowallet = #0085ca; 220 | 221 | $bc-heroku = #c7c5e6; 222 | 223 | $bc-heroku-2 = #6567a5; 224 | 225 | $bc-hootsuite = #003366; 226 | 227 | $bc-houzz = #73ba37; 228 | 229 | $bc-hp = #0096d6; 230 | 231 | $bc-html5 = #ec6231; 232 | 233 | $bc-hulu = #8cc83b; 234 | 235 | $bc-ibm = #003e6a; 236 | 237 | $bc-ikea = #ffcc33; 238 | 239 | $bc-imdb = #f3ce13; 240 | 241 | $bc-imgur = #85bf25; 242 | 243 | $bc-instagram = #3f729b; 244 | 245 | $bc-instapaper = #1c1c1c; 246 | 247 | $bc-intel = #0071c5; 248 | 249 | $bc-intuit = #365ebf; 250 | 251 | $bc-kickstarter = #76cc1e; 252 | 253 | $bc-kippt = #e03500; 254 | 255 | $bc-kodery = #00af81; 256 | 257 | $bc-lastfm = #c3000d; 258 | 259 | $bc-linkedin = #007bb6; 260 | 261 | $bc-livestream = #cf0005; 262 | 263 | $bc-lumo = #576396; 264 | 265 | $bc-mailru = #168de2; 266 | 267 | $bc-mailru-2 = #ffa930; 268 | 269 | $bc-makita = #d82028; 270 | 271 | $bc-makita-2 = #29a0b7; 272 | 273 | $bc-mixpanel = #a086d3; 274 | 275 | $bc-meetup = #e51937; 276 | 277 | $bc-netflix = #b9070a; 278 | 279 | $bc-nokia = #183693; 280 | 281 | $bc-nvidia = #76b900; 282 | 283 | $bc-odnoklassniki = #ed812b; 284 | 285 | $bc-opera = #cc0f16; 286 | 287 | $bc-path = #e41f11; 288 | 289 | $bc-paypal-dark = #1e477a; 290 | 291 | $bc-paypal-dark-2 = #3b7bbf; 292 | 293 | $bc-pinboard = #0000e6; 294 | 295 | $bc-pinterest = #cc2127; 296 | 297 | $bc-playstation = #665cbe; 298 | 299 | $bc-pocket = #ee4056; 300 | 301 | $bc-prezi = #318bff; 302 | 303 | $bc-pusha = #0f71b4; 304 | 305 | $bc-quora = #a82400; 306 | 307 | $bc-quote-fm = #66ceff; 308 | 309 | $bc-rdio = #008fd5; 310 | 311 | $bc-readability = #9c0000; 312 | 313 | $bc-red-hat = #cc0000; 314 | 315 | $bc-reddit = #cee2f8; 316 | 317 | $bc-reddit-2 = #ff4500; 318 | 319 | $bc-resource = #7eb400; 320 | 321 | $bc-rockpack = #0ba6ab; 322 | 323 | $bc-roon = #62b0d9; 324 | 325 | $bc-rss = #ee802f; 326 | 327 | $bc-salesforce = #1798c1; 328 | 329 | $bc-samsung = #0c4da2; 330 | 331 | $bc-shopify = #96bf48; 332 | 333 | $bc-skype = #00aff0; 334 | 335 | $bc-slack = #6fcbdc; 336 | 337 | $bc-slack-2 = #e9a821; 338 | 339 | $bc-slack-3 = #e11664; 340 | 341 | $bc-slack-4 = #3fba91; 342 | 343 | $bc-smashing-magazine = #f0503a; 344 | 345 | $bc-snagajob = #f47a20; 346 | 347 | $bc-softonic = #008ace; 348 | 349 | $bc-soundcloud = #ff7700; 350 | 351 | $bc-space-box = #f86960; 352 | 353 | $bc-spotify = #81b71a; 354 | 355 | $bc-sprint = #fee100; 356 | 357 | $bc-squarespace = #121212; 358 | 359 | $bc-stackoverflow = #ef8236; 360 | 361 | $bc-staples = #cc0000; 362 | 363 | $bc-status-chart = #d7584f; 364 | 365 | $bc-stripe = #008cdd; 366 | 367 | $bc-studyblue = #00afe1; 368 | 369 | $bc-stumbleupon = #f74425; 370 | 371 | $bc-swarm = #fd9627; 372 | 373 | $bc-t-mobile = #ea0a8e; 374 | 375 | $bc-technorati = #40a800; 376 | 377 | $bc-the-next-web = #ef4423; 378 | 379 | $bc-treehouse = #5cb868; 380 | 381 | $bc-trello = #256a92; 382 | 383 | $bc-tripadvisor = #589442; 384 | 385 | $bc-trulia = #5eab1f; 386 | 387 | $bc-tumblr = #35465c; 388 | 389 | $bc-twitch-tv = #6441a5; 390 | 391 | $bc-twitter = #55acee; 392 | 393 | $bc-typekit = #9aca3c; 394 | 395 | $bc-typo3 = #ff8700; 396 | 397 | $bc-uber = #09091a; 398 | 399 | $bc-uber-2 = #c0c0c8; 400 | 401 | $bc-uber-3 = #1fbad6; 402 | 403 | $bc-ubuntu = #dd4814; 404 | 405 | $bc-ustream = #3388ff; 406 | 407 | $bc-verizon = #ef1d1d; 408 | 409 | $bc-vimeo = #44bbff; 410 | 411 | $bc-vine = #00a478; 412 | 413 | $bc-virb = #06afd8; 414 | 415 | $bc-virgin-media = #cc0000; 416 | 417 | $bc-vkontakte = #45668e; 418 | 419 | $bc-wechat = #7bb32e; 420 | 421 | $bc-weibo = #e71d34; 422 | 423 | $bc-weixin = #93d034; 424 | 425 | $bc-whatsapp = #4dc247; 426 | 427 | $bc-wolfram-alpha = #f68d1e; 428 | 429 | $bc-wooga = #5b009c; 430 | 431 | $bc-wordpress = #21759b; 432 | 433 | $bc-wordpress-2 = #d54e21; 434 | 435 | $bc-wordpress-3 = #464646; 436 | 437 | $bc-wunderlist = #2b88d9; 438 | 439 | $bc-xbox = #52b043; 440 | 441 | $bc-xing = #126567; 442 | 443 | $bc-yahoo = #720e9e; 444 | 445 | $bc-yandex = #ffcc00; 446 | 447 | $bc-yelp = #c41200; 448 | 449 | $bc-youtube = #cd201f; 450 | 451 | $bc-zalongo = #5498dc; 452 | 453 | $bc-zendesk = #78a300; 454 | 455 | $bc-zerply = #9dcc7a; 456 | 457 | $bc-zootool = #5e8b1d; 458 | 459 | $bc-microsoft = #f65314; 460 | 461 | $bc-microsoft-2 = #7cbb00; 462 | 463 | $bc-microsoft-3 = #00a1f1; 464 | 465 | $bc-microsoft-4 = #ffbb00; 466 | 467 | $bc-windows = #00bcf2; 468 | 469 | $bc-microsoft-office = #ea3e23; 470 | 471 | $bc-windows-phone = #68217a; 472 | 473 | $bc-bing = #ffb900; 474 | 475 | $bc-kiwipay = #00b0df; 476 | 477 | $bc-wordpress-com = #1e8cbe; 478 | 479 | $bc-django = #092e20; 480 | 481 | $bc-geocaching = #4a742c; 482 | 483 | $bc-utorrent = #00853f; 484 | 485 | $bc-arch-linux = #1793d1; 486 | 487 | $bc-arch-linux-2 = #333333; 488 | 489 | $bc-gittip = #663300; 490 | 491 | $bc-gittip-2 = #339966; 492 | 493 | $bc-flattr = #f67c1a; 494 | 495 | $bc-flattr-2 = #338d11; 496 | 497 | $bc-hsbc = #db0011; 498 | 499 | $bc-zopim = #ff9d3b; 500 | 501 | $bc-bitbucket = #205081; 502 | 503 | $bc-strava = #fc4c02; 504 | 505 | $bc-mic = #21c1ff; 506 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | /* jshint node: true */ 2 | 'use strict'; 3 | 4 | var gulp = require('gulp'), 5 | g = require('gulp-load-plugins')({lazy: false}), 6 | noop = g.util.noop, 7 | requireDir = require('require-dir'); 8 | 9 | requireDir('./gulptasks'); 10 | 11 | gulp.task('help', g.taskListing); 12 | gulp.task('dev', ['live-server']); 13 | gulp.task('dist', ['styles-dist']); 14 | 15 | gulp.task('deploy', ['dev-build'] ,function() { 16 | return gulp.src(['./.tmp/**/*']) 17 | .pipe(g.ghPages()); 18 | }); 19 | 20 | -------------------------------------------------------------------------------- /gulptasks/dev.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp'), 2 | g = require('gulp-load-plugins')({ lazy: false }) 3 | 4 | function requireUncached(module) { 5 | delete require.cache[require.resolve(module)] 6 | return require(module) 7 | } 8 | 9 | function getTemplateData() { 10 | return { 11 | version: requireUncached('../package.json').version, 12 | companies: requireUncached('../data/brandColors.js').getAll() 13 | } 14 | } 15 | 16 | gulp.task('dev-extras', function() { 17 | return gulp.src(['./app/CNAME', './app/favicon.ico']).pipe(gulp.dest('.tmp/')) 18 | }) 19 | 20 | gulp.task('dev-brand-colors-css', function() { 21 | return gulp 22 | .src(['templates/brand-colors.css']) 23 | .on('error', g.notify.onError('<%= error.message%>')) 24 | .pipe(g.data(getTemplateData())) 25 | .pipe(g.swig()) 26 | .pipe(g.rename('brand-colors.latest.css')) 27 | .pipe(gulp.dest('.tmp/dist/latest/css/')) 28 | }) 29 | 30 | gulp.task('dev-scss', function() { 31 | return gulp 32 | .src(['./app/stylesheets/main.scss']) 33 | .on('error', g.notify.onError('<%= error.message%>')) 34 | .pipe(g.sass()) 35 | .pipe(g.rename('styles.css')) 36 | .pipe(gulp.dest('.tmp/')) 37 | }) 38 | 39 | gulp.task('dev-jade', function() { 40 | return gulp 41 | .src(['./app/index.jade']) 42 | .pipe( 43 | g.jade({ 44 | locals: getTemplateData(), 45 | pretty: true 46 | }) 47 | ) 48 | .pipe(gulp.dest('.tmp/')) 49 | }) 50 | 51 | gulp.task('dev-js', function() { 52 | return gulp.src(['./app/scripts/index.js']).pipe(gulp.dest('.tmp/')) 53 | }) 54 | 55 | gulp.task('dev-build', [ 56 | 'dev-brand-colors-css', 57 | 'dev-scss', 58 | 'dev-jade', 59 | 'dev-js', 60 | 'dev-extras' 61 | ]) 62 | 63 | gulp.task('live-server', ['dev-build'], function() { 64 | var server = g.liveServer.static(['.tmp/'], 3000) 65 | server.start() 66 | gulp.watch('./data/brandColors.js', ['dev-brand-colors-css', 'dev-jade']) 67 | gulp.watch('./app/stylesheets/*.scss', ['dev-css']) 68 | gulp.watch('./app/scripts/*.js', ['dev-js']) 69 | gulp.watch('./app/*.jade', ['dev-jade']) 70 | 71 | gulp.watch('./.tmp/*', function(file) { 72 | server.notify.apply(server, [file]) 73 | }) 74 | }) 75 | -------------------------------------------------------------------------------- /gulptasks/dist.js: -------------------------------------------------------------------------------- 1 | /* jshint node: true */ 2 | 'use strict'; 3 | 4 | var gulp = require('gulp'), 5 | g = require('gulp-load-plugins')({lazy: false}), 6 | noop = g.util.noop, 7 | swig = require('gulp-swig'), 8 | companies = require('../data/brandColors.js').getAll(), 9 | version = require('../package.json').version, 10 | template = { 11 | version: version, 12 | companies: companies 13 | }; 14 | 15 | gulp.task('styles-dist', ['render-css','render-scss','render-less', 'render-sass', 'render-stylus'], noop); 16 | 17 | gulp.task('render-scss', function () { 18 | return gulp.src(['templates/brand-colors.scss']) 19 | .on('error', g.notify.onError('<%= error.message%>')) 20 | .pipe(g.data(template)) 21 | .pipe(swig()) 22 | .pipe(g.rename('brand-colors.latest.scss')) 23 | .pipe(gulp.dest('dist/latest/scss/')) 24 | .pipe(g.rename('brand-colors.' + version + '.scss')) 25 | .pipe(gulp.dest('dist/'+ version + '/scss/')); 26 | }); 27 | 28 | gulp.task('render-less', function () { 29 | return gulp.src(['templates/brand-colors.less']) 30 | .on('error', g.notify.onError('<%= error.message%>')) 31 | .pipe(g.data(template)) 32 | .pipe(swig()) 33 | .pipe(g.rename('brand-colors.latest.less')) 34 | .pipe(gulp.dest('dist/latest/less/')) 35 | .pipe(g.rename('brand-colors.' + version + '.less')) 36 | .pipe(gulp.dest('dist/'+ version + '/less/')); 37 | }); 38 | 39 | gulp.task('render-sass', function () { 40 | return gulp.src(['templates/brand-colors.sass']) 41 | .on('error', g.notify.onError('<%= error.message%>')) 42 | .pipe(g.data(template)) 43 | .pipe(swig()) 44 | .pipe(g.rename('brand-colors.latest.sass')) 45 | .pipe(gulp.dest('dist/latest/sass/')) 46 | .pipe(g.rename('brand-colors.' + version + '.sass')) 47 | .pipe(gulp.dest('dist/'+ version + '/sass/')); 48 | }); 49 | 50 | gulp.task('render-stylus', function () { 51 | return gulp.src(['templates/brand-colors.styl']) 52 | .on('error', g.notify.onError('<%= error.message%>')) 53 | .pipe(g.data(template)) 54 | .pipe(swig()) 55 | .pipe(g.rename('brand-colors.latest.styl')) 56 | .pipe(gulp.dest('dist/latest/stylus/')) 57 | .pipe(g.rename('brand-colors.' + version + '.styl')) 58 | .pipe(gulp.dest('dist/'+ version + '/stylus/')); 59 | }); 60 | 61 | 62 | gulp.task('render-css', function () { 63 | return gulp.src(['templates/brand-colors.css']) 64 | .on('error', g.notify.onError('<%= error.message%>')) 65 | .pipe(g.data(template)) 66 | .pipe(swig()) 67 | .pipe(g.rename('brand-colors.latest.css')) 68 | .pipe(gulp.dest('dist/latest/css/')) 69 | .pipe(g.rename('brand-colors.' + version + '.css')) 70 | .pipe(gulp.dest('dist/'+ version + '/css/')) 71 | .pipe(g.minifyCss()) 72 | .pipe(g.rename('brand-colors.' + version + '.min.css')) 73 | .pipe(gulp.dest('dist/'+ version + '/css/')) 74 | .pipe(g.rename('brand-colors.latest.min.css')) 75 | .pipe(gulp.dest('dist/latest/css/')); 76 | }); 77 | 78 | -------------------------------------------------------------------------------- /hook.io.js: -------------------------------------------------------------------------------- 1 | module['exports'] = function echoHttp (hook) { 2 | var GitHubApi = require('github'), 3 | store = hook.datastore, 4 | res = hook.res; 5 | 6 | if(!hook.params.brandName) return res.status(400).json({error:'missing brandName'}); 7 | if(!hook.params.brandColor) return res.status(400).json({error:'missing brandColor'}); 8 | if(!hook.params.brandName) return res.status(400).json({error:'missing brandName'}); 9 | 10 | var github = new GitHubApi({ 11 | // required 12 | version: "3.0.0", 13 | protocol: "https", 14 | host: "api.github.com", // should be api.github.com for GitHub 15 | timeout: 5000, 16 | headers: { 17 | "user-agent": "brand-colors-bot" // GitHub is happy with a unique user agent 18 | } 19 | }); 20 | 21 | store.get('authKey', function(err, token){ 22 | if (err) return res.status(500).json({error:'missing internal auth keys'}); 23 | 24 | github.authenticate({ 25 | type: "oauth", 26 | token: token 27 | }); 28 | 29 | var body = { 30 | brandName : hook.params.brandName, 31 | brandColor : hook.params.brandColor, 32 | brandSource : (hook.params.brandSource)|| null, 33 | } 34 | 35 | if (hook.params.brandSource){ 36 | body.brandSoure = hook.params.brandSource; 37 | } 38 | 39 | body = JSON.stringify(body); 40 | 41 | 42 | if (hook.params.message){ 43 | body.body = '\n' + hook.params.message; 44 | } 45 | 46 | github.issues.create({ 47 | user : 'reimertz', 48 | repo : 'brand-colors', 49 | title : 'BOT: Add ' + hook.params.brandName + " : " + hook.params.brandColor, 50 | body : body 51 | }, function(err, result){ 52 | if (err) return res.status(500).json({error:'github messed up'}); 53 | 54 | res.end(); 55 | }) 56 | }); 57 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "brand-colors", 3 | "version": "2.1.1", 4 | "description": "A collection of branding colors of all the major companies.", 5 | "homepage": "https://brand-colors.com", 6 | "main": "data/brandColors.js", 7 | "repository": { 8 | "type": "git", 9 | "url": "git@github.com:reimertz/brand-colors.git" 10 | }, 11 | "keywords": [ 12 | "branding", 13 | "brand colors", 14 | "colors" 15 | ], 16 | "author": "Piérre Reimertz", 17 | "license": "MIT", 18 | "devDependencies": { 19 | "gulp": "^3.9.1", 20 | "gulp-cached": "~1.1.1", 21 | "gulp-clean": "~0.4.0", 22 | "gulp-csslint": "~1.0.1", 23 | "gulp-data": "^1.3.1", 24 | "gulp-gh-pages": "^0.5.4", 25 | "gulp-jade": "^1.1.0", 26 | "gulp-live-server": "0.0.31", 27 | "gulp-load-plugins": "~2.0.1", 28 | "gulp-markdown": "~5.0.1", 29 | "gulp-minify-css": "~1.2.4", 30 | "gulp-notify": "~3.2.0", 31 | "gulp-rename": "^1.4.0", 32 | "gulp-sass": "^4.0.2", 33 | "gulp-swig": "^0.9.1", 34 | "gulp-uglify": "~3.0.2", 35 | "gulp-util": "~3.0.8", 36 | "lazypipe": "~1.0.2", 37 | "node-fetch": "^2.6.0", 38 | "opn": "~6.0.0", 39 | "require-dir": "^1.2.0", 40 | "sass": "~1.23.7" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /scripts/fetchBrandColorsNet.js: -------------------------------------------------------------------------------- 1 | const fetch = require('node-fetch') 2 | const fs = require('fs') 3 | const oldColors = require('../data/brandColors.js')._brandColors 4 | const collator = new Intl.Collator(undefined, { 5 | numeric: true, 6 | sensitivity: 'base' 7 | }) 8 | 9 | const naturalObjectSort = object => 10 | Object.keys(object) 11 | .sort(collator.compare) 12 | .reduce((all, c) => { 13 | all[c] = object[c] 14 | return all 15 | }, {}) 16 | 17 | async function run() { 18 | const response = await fetch('https://brandcolors.net') 19 | const body = await response.text() 20 | const colors = JSON.parse( 21 | body 22 | .match(/]*>var bcBrands = ([\s\S]*?)<\/script>/gim)[0] 23 | .replace('', '') 25 | ) 26 | 27 | const newColors = Object.keys(colors).reduce((all, k) => { 28 | colors[k].colors.map((color, index) => { 29 | all[ 30 | `${colors[k].slug}${index !== 0 ? `-${index + 1}` : ''}` 31 | ] = `#${color}` 32 | }) 33 | return all 34 | }, {}) 35 | 36 | const sortedOldColors = naturalObjectSort(oldColors) 37 | const sortedNewColors = naturalObjectSort(newColors) 38 | const sortedMergedColors = naturalObjectSort( 39 | Object.assign({}, sortedOldColors, sortedNewColors) 40 | ) 41 | 42 | await fs.writeFileSync( 43 | './data/brandColors.net.json', 44 | JSON.stringify(sortedNewColors, null, 2) 45 | ) 46 | await fs.writeFileSync( 47 | './data/brandColors.merged.json', 48 | JSON.stringify(sortedMergedColors, null, 2) 49 | ) 50 | } 51 | 52 | run() 53 | -------------------------------------------------------------------------------- /templates/brand-colors.css: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors {{ version }} 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2017 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | {% for company in companies %} 9 | .bc-{{company.name}} { color: {{company.color}}; } 10 | .bc-{{company.name}}-bg { background-color: {{company.color}};}{% endfor %} -------------------------------------------------------------------------------- /templates/brand-colors.less: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors {{ version }} 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2017 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | {% for company in companies %}@bc-{{company.name}}: {{company.color}}; 9 | {% endfor %} 10 | @brand-colors: 11 | {% for company in companies %} bc-{{company.name}} {{company.color}}, 12 | {% endfor %}; -------------------------------------------------------------------------------- /templates/brand-colors.sass: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors {{ version }} 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2017 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | {% for company in companies %}$bc-{{company.name}}: {{company.color}} 9 | {% endfor %} 10 | $brand-colors: ({% for company in companies %}{{company.name}}: {{company.color}}, {% endfor %}); -------------------------------------------------------------------------------- /templates/brand-colors.scss: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors {{ version }} 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2017 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | {% for company in companies %}$bc-{{company.name}}: {{company.color}}; 9 | {% endfor %} 10 | $brand-colors: ( 11 | {% for company in companies %} {{company.name}}: {{company.color}}, 12 | {% endfor %}); -------------------------------------------------------------------------------- /templates/brand-colors.styl: -------------------------------------------------------------------------------- 1 | /* 2 | * @preserve brand-colors {{ version }} 3 | * http://reimertz.github.io/brand-colors 4 | * (c) 2017 Pierre Reimertz 5 | * may be freely distributed under the MIT license. 6 | */ 7 | 8 | {% for company in companies %}$bc-{{company.name}} = {{company.color}}; 9 | {% endfor %} 10 | brand-colors = { 11 | {% for company in companies %} bc-{{company.name}}: {{company.color}}, 12 | {% endfor %}} -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | var c=require('./data/brandColors.js'); 2 | console.log(c.getByGroup(['zapier','facebook','youtube','xing'])); --------------------------------------------------------------------------------