@import './palette.styl';

// '50', '100', '200', '300', '400', '500', '600', '700', '800', '900'
$palette = palette('Dark');
$white = paletteColor('White');
$dark = paletteColor('Black');

$font_size = 1em;

$opacity_primary= 0.87;
$opacity_secondary= 0.54;
$opacity_disabled= 0.38;


$success = { bg: #4CAF50, txt: #fff}
$info = { bg: #2196F3, txt: #fff}
$warning = { bg: #ff9800, txt: #fff}
$danger = { bg: #f44336, txt: #fff}
$other = { bg: #e7e7e7, txt: #000}

$app = {
    white: $white,
    dark: $dark,

    status: {
        off: #f39c12
        draft: #f39c12
        live: #51A351
        expired: #BD362F
        published: #51A351
        scheduled: #00acd6
    }

    // important
    priorities: {
      important: palette('Red'), //important
      warning: palette('Lime'), //warning
      info: palette('Light Blue'), //info
      inverse: palette('Black'), //inverse
      success: palette('Green'), //success
      special: palette('Deep Purple') //special
    },

    palette: $palette
}

@import './common.styl';
