#!/usr/bin/env node

/**
 * Bud file for scss variables.
 * Executing this file renders variable scss files.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{pkg.name}}.
 *
 * @see https://github.com/coz-repo/coz
 */

"use strict";

const apemanBudScss = require('apeman-bud-scss');

module.exports = apemanBudScss({
    type: 'variable',
    vars: {
        // sizes.scss
        sizes: {
            smallMediaBreakpoint: '128px',
            mediumMediaBreakpoint: '992px',
            largeMediaBreakpoint: '1200px'
        },
        // colors.scss
        colors: {
            backgroundColor: '#FFF'
        }
    }
});

{{{read _render}}}

