/*
 * Wire
 * Copyright (C) 2016 Wire Swiss GmbH
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see http://www.gnu.org/licenses/.
 *
 */

//-----------------------------------------------------------------------------
// Colors
//-----------------------------------------------------------------------------
@body-bg:     #ffe;
@text-color:  #333;

//-----------------------------------------------------------------------------
// Typography
//-----------------------------------------------------------------------------
@font-family-sans-serif:  "Helvetica Neue", Helvetica, Arial, sans-serif;
@font-family-serif:       Georgia, "Times New Roman", Times, serif;
@font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace;
@font-family-base:        @font-family-sans-serif;

// ----------------------------------------------------------------------------
// Animations
// ----------------------------------------------------------------------------

// for slower animation use n * slower
@animation-timing-faster: .15s;
@animation-timing-fast:   .35s;
@animation-timing-slow:   .55s;
@animation-timing-slower: .7s;

// Easing functions for our motion flows:
// http://motion.wearezeta.com/

// Based on: http://robertpenner.com/easing/
// Read more: http://matthewlein.com/ceaser/
@ease-in-quad:      cubic-bezier(0.550, 0.085, 0.680, 0.530);
@ease-in-cubic:     cubic-bezier(0.550, 0.055, 0.675, 0.190);
@ease-in-expo:      cubic-bezier(0.600, 0.040, 0.980, 0.335);
@ease-in-quart:     cubic-bezier(0.895, 0.030, 0.685, 0.220);
@ease-out-expo:     cubic-bezier(0.190, 1.000, 0.220, 1.000);
@ease-out-quart:    cubic-bezier(0.165, 0.840, 0.440, 1.000);
@ease-out-back:     cubic-bezier(0.175, 0.885, 0.320, 1.275);
@ease-in-out-expo:  cubic-bezier(1.000, 0.000, 0.000, 1.000);
