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 {
|
2021-01-11 11:51:26 +03:00
|
|
|
--color-main-text: #{$color-main-text};
|
|
|
|
--color-main-background: #{$color-main-background};
|
|
|
|
--color-main-background-translucent: #{$color-main-background-translucent};
|
2018-06-03 22:06:27 +03:00
|
|
|
|
2021-01-19 18:38:51 +03:00
|
|
|
// To use like this: background-image: linear-gradient(0, var(--gradient-main-background));
|
|
|
|
--gradient-main-background: var(--color-main-background) 0%, var(--color-main-background-translucent) 85%, transparent 100%;
|
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--color-background-hover: #{$color-background-hover};
|
|
|
|
--color-background-dark: #{$color-background-dark};
|
|
|
|
--color-background-darker: #{$color-background-darker};
|
2018-06-03 22:06:27 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--color-placeholder-light: #{$color-placeholder-light};
|
|
|
|
--color-placeholder-dark: #{$color-placeholder-dark};
|
2020-08-05 15:42:08 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--color-primary: #{$color-primary};
|
|
|
|
--color-primary-light: #{$color-primary-light};
|
|
|
|
--color-primary-text: #{$color-primary-text};
|
|
|
|
--color-primary-text-dark: #{$color-primary-text-dark};
|
|
|
|
--color-primary-element: #{$color-primary-element};
|
|
|
|
--color-primary-element-light: #{$color-primary-element-light};
|
2018-06-03 22:06:27 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--color-error: #{$color-error};
|
|
|
|
--color-warning: #{$color-warning};
|
|
|
|
--color-success: #{$color-success};
|
2018-06-03 12:47:45 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--color-text-maxcontrast: #{$color-text-maxcontrast};
|
|
|
|
--color-text-light: #{$color-main-text};
|
|
|
|
--color-text-lighter: #{$color-text-maxcontrast};
|
2018-06-03 12:47:45 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--image-logo: #{$image-logo};
|
|
|
|
--image-login-background: #{$image-login-background};
|
|
|
|
--image-logoheader: #{$image-logoheader};
|
|
|
|
--image-favicon: #{$image-favicon};
|
2018-06-03 12:47:45 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--color-loading-light: #{$color-loading-light};
|
|
|
|
--color-loading-dark: #{$color-loading-dark};
|
2018-06-03 22:06:27 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--color-box-shadow: #{$color-box-shadow};
|
2018-06-03 22:06:27 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--color-border: #{$color-border};
|
|
|
|
--color-border-dark: #{$color-border-dark};
|
|
|
|
--border-radius: #{$border-radius};
|
|
|
|
--border-radius-large: #{$border-radius-large};
|
|
|
|
--border-radius-pill: #{$border-radius-pill};
|
2018-06-03 12:47:45 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--font-face: #{$font-face};
|
|
|
|
--default-font-size: #{$default-font-size};
|
2020-10-30 17:26:07 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--default-line-height: #{$default-line-height};
|
2018-10-31 01:20:09 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--animation-quick: #{$animation-quick};
|
|
|
|
--animation-slow: #{$animation-slow};
|
2020-08-03 13:54:37 +03:00
|
|
|
|
2021-01-11 11:51:26 +03:00
|
|
|
--header-height: #{$header-height};
|
2018-06-14 10:25:19 +03:00
|
|
|
}
|