rainbox.email/assets/sass/_vars.scss

34 lines
834 B
SCSS
Raw Normal View History

2020-07-25 20:03:27 +02:00
$primary: darken(#333333, 2%);
2020-04-23 18:07:39 +02:00
$primaryForeground: #f0f0f0;
$secondary: #00c3ff;
2020-04-23 18:07:39 +02:00
$secondaryForeground: $primaryForeground;
$backgroundColor: darken($primary, 4%);
$defaultTextColor: #ffffff;
2020-04-23 18:07:39 +02:00
$headerBackground: transparent;
$headerContainer: true;
$footerBackground: transparent;
$panelBackground: darken($backgroundColor, 3.2%);
$inputBackground: darken($panelBackground, 4%);
$info: #4499ff;
2020-04-23 18:07:39 +02:00
$infoText: darken($info, 42%);
$infoColor: desaturate($infoText, 50%);
$success: #55ff55;
2020-04-23 18:07:39 +02:00
$successText: darken($success, 45%);
$successColor: desaturate($successText, 50%);
$warning: #ffcc00;
2020-04-23 18:07:39 +02:00
$warningText: darken($warning, 30%);
$warningColor: desaturate($warningText, 50%);
$error: #ff0000;
2020-04-23 18:07:39 +02:00
$errorText: darken($error, 30%);
$errorColor: desaturate($errorText, 50%);
2020-07-06 11:36:37 +02:00
// Responsivity
$mobileThreshold: 632px;
$desktopThreshold: 940px;