/*!
 * The MIT License (MIT)
 *
 * Copyright (c) 2020 Karl STEIN
 *
 * 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:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * 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 NON INFRINGEMENT. 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.
 */

// Default
$background-color: rgba(255, 255, 255, 1.0);
$border-radius: 5px;
$margin: 10px;
$padding: 10px;

// Inverse
$background-color-inverse: rgba(60, 60, 60, 0.9);
$color-inverse: rgba(250, 250, 250, 1.0);

// Button
$button-padding: 10px;

// Guide
$guide-background-color: $background-color-inverse;

// Popup
$popup-background-color: $background-color-inverse;
$popup-tail-size: 8px;

// Tooltip
$tooltip-background-color: $background-color-inverse;
$tooltip-tail-size: 6px;

// Text
$text-padding: 20px;
$text-line-height: 1.5em;

// Animation
$anim-duration: 0.5s;
$anim-close-curve: ease;
$anim-close-duration: 0.2s;
$anim-open-curve: ease;
$anim-open-duration: 0.3s;

// Shadows
$shadow-color: rgba(0, 0, 0, 0.3);
$shadow-size: 10px;
$shadow-x: 0;
$shadow-y: 5px;
$shadow: $shadow-x $shadow-y $shadow-size $shadow-color;
