2018-06-03 12:47:45 +03:00
|
|
|
// CSS4 Variables
|
|
|
|
// Remember, you cannot use scss functions with css4 variables
|
|
|
|
// All css4 variables must be fixed! Scss is a PRE processor
|
|
|
|
// css4 variables are processed after scss!
|
|
|
|
:root {
|
|
|
|
--color-main-text: $color-main-text;
|
|
|
|
--color-main-background: $color-main-background;
|
2018-10-12 21:43:27 +03:00
|
|
|
--color-main-background-translucent: $color-main-background-translucent;
|
2018-06-03 22:06:27 +03:00
|
|
|
|
|
|
|
--color-background-dark: $color-background-dark;
|
|
|
|
--color-background-darker: $color-background-darker;
|
|
|
|
|
2018-06-03 12:47:45 +03:00
|
|
|
--color-primary: $color-primary;
|
|
|
|
--color-primary-text: $color-primary-text;
|
2018-06-03 22:06:27 +03:00
|
|
|
--color-primary-text-dark: $color-primary-text-dark;
|
|
|
|
--color-primary-element: $color-primary-element;
|
2018-06-05 17:06:01 +03:00
|
|
|
--color-primary-element-light: $color-primary-element-light;
|
2018-06-03 22:06:27 +03:00
|
|
|
|
2018-06-03 12:47:45 +03:00
|
|
|
--color-error: $color-error;
|
|
|
|
--color-warning: $color-warning;
|
|
|
|
--color-success: $color-success;
|
|
|
|
|
2018-06-03 22:06:27 +03:00
|
|
|
--color-text-maxcontrast: $color-text-maxcontrast;
|
2018-06-05 17:06:01 +03:00
|
|
|
--color-text-light: $color-text-light;
|
2018-06-03 22:06:27 +03:00
|
|
|
--color-text-lighter: $color-text-lighter;
|
2018-06-03 12:47:45 +03:00
|
|
|
|
|
|
|
--image-logo: $image-logo;
|
|
|
|
--image-login-background: $image-login-background;
|
|
|
|
|
2018-06-05 17:06:01 +03:00
|
|
|
--color-loading-light: $color-loading-light;
|
2018-06-03 12:47:45 +03:00
|
|
|
--color-loading-dark: $color-loading-dark;
|
2018-06-03 22:06:27 +03:00
|
|
|
|
2018-06-03 12:47:45 +03:00
|
|
|
--color-box-shadow: $color-box-shadow;
|
2018-06-03 22:06:27 +03:00
|
|
|
|
2018-06-03 12:47:45 +03:00
|
|
|
--color-border: $color-border;
|
2018-06-03 22:06:27 +03:00
|
|
|
--color-border-dark: $color-border-dark;
|
2018-06-03 12:47:45 +03:00
|
|
|
--border-radius: $border-radius;
|
2018-10-01 22:40:28 +03:00
|
|
|
--border-radius-large: $border-radius-large;
|
2018-10-19 17:19:37 +03:00
|
|
|
--border-radius-pill: $border-radius-pill;
|
2018-06-03 12:47:45 +03:00
|
|
|
|
2018-06-14 10:25:19 +03:00
|
|
|
--font-face: $font-face;
|
2018-10-31 01:20:09 +03:00
|
|
|
|
|
|
|
--animation-quick: $animation-quick;
|
2019-04-15 12:34:18 +03:00
|
|
|
--animation-slow: $animation-slow;
|
2018-06-14 10:25:19 +03:00
|
|
|
}
|