2013-02-05 14:16:51 -05:00
|
|
|
// --------------------------------------------------
|
|
|
|
// Variables used throughout the theme
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2014-02-10 01:04:21 -05:00
|
|
|
// Layout dimensions
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2014-07-09 19:56:35 -04:00
|
|
|
$small-width: 800px !default;
|
2014-02-10 01:04:21 -05:00
|
|
|
$medium-width: 995px !default;
|
|
|
|
$large-width: 1110px !default;
|
|
|
|
|
2014-05-06 23:53:04 -04:00
|
|
|
// Brand color variables
|
2014-02-10 01:04:21 -05:00
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
$google: #5b76f7 !default;
|
|
|
|
$facebook: #3b5998 !default;
|
|
|
|
$cas: #70BA61 !default;
|
|
|
|
$twitter: #00bced !default;
|
|
|
|
$yahoo: #810293 !default;
|
|
|
|
$github: #6d6d6d !default;
|
|
|
|
|
2015-08-19 13:27:17 -04:00
|
|
|
|
2014-03-26 21:16:41 -04:00
|
|
|
// Fonts
|
2013-02-05 14:16:51 -05:00
|
|
|
// --------------------------------------------------
|
|
|
|
|
2014-12-16 09:24:15 -05:00
|
|
|
$base-font-size: 14px !default;
|
2015-04-23 13:33:29 -04:00
|
|
|
$base-line-height: 19px !default;
|
2014-04-06 20:06:55 -04:00
|
|
|
$base-font-family: Helvetica, Arial, sans-serif !default;
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-05-02 17:46:03 -04:00
|
|
|
/* These files don't actually exist. They're injected by DiscourseSassImporter. */
|
|
|
|
@import "theme_variables";
|
2014-04-25 04:26:37 -04:00
|
|
|
@import "plugins_variables";
|
2014-05-19 01:17:59 -04:00
|
|
|
|
2015-04-23 13:33:29 -04:00
|
|
|
// w3c definition of color brightness
|
2014-08-06 09:31:13 -04:00
|
|
|
@function brightness($color) {
|
2015-04-23 13:33:29 -04:00
|
|
|
@return ((red($color) * .299) + (green($color) * .587) + (blue($color) * .114));
|
2014-08-06 09:31:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@function dark-light-diff($adjusted-color, $comparison-color, $lightness, $darkness) {
|
|
|
|
@if brightness($adjusted-color) < brightness($comparison-color) {
|
2015-04-23 13:33:29 -04:00
|
|
|
@return scale-color($adjusted-color, $lightness: $lightness);
|
2014-08-06 09:31:13 -04:00
|
|
|
} @else {
|
2015-04-23 13:33:29 -04:00
|
|
|
@return scale-color($adjusted-color, $lightness: $darkness);
|
2014-08-06 09:31:13 -04:00
|
|
|
}
|
|
|
|
}
|
2015-08-18 15:23:06 -04:00
|
|
|
@function dark-light-choose($light-theme-result, $dark-theme-result) {
|
|
|
|
@if brightness($primary) < brightness($secondary) {
|
|
|
|
@return $light-theme-result;
|
|
|
|
} @else {
|
|
|
|
@return $dark-theme-result;
|
|
|
|
}
|
|
|
|
}
|