You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.9 KiB

  1. // CSS4 Variables
  2. // Remember, you cannot use scss functions with css4 variables
  3. // All css4 variables must be fixed! Scss is a PRE processor
  4. // css4 variables are processed after scss!
  5. :root {
  6. --color-main-text: #{$color-main-text};
  7. --color-main-background: #{$color-main-background};
  8. --color-main-background-translucent: #{$color-main-background-translucent};
  9. --color-background-hover: #{$color-background-hover};
  10. --color-background-dark: #{$color-background-dark};
  11. --color-background-darker: #{$color-background-darker};
  12. --color-placeholder-light: #{$color-placeholder-light};
  13. --color-placeholder-dark: #{$color-placeholder-dark};
  14. --color-primary: #{$color-primary};
  15. --color-primary-light: #{$color-primary-light};
  16. --color-primary-text: #{$color-primary-text};
  17. --color-primary-text-dark: #{$color-primary-text-dark};
  18. --color-primary-element: #{$color-primary-element};
  19. --color-primary-element-light: #{$color-primary-element-light};
  20. --color-error: #{$color-error};
  21. --color-warning: #{$color-warning};
  22. --color-success: #{$color-success};
  23. --color-text-maxcontrast: #{$color-text-maxcontrast};
  24. --color-text-light: #{$color-main-text};
  25. --color-text-lighter: #{$color-text-maxcontrast};
  26. --image-logo: #{$image-logo};
  27. --image-login-background: #{$image-login-background};
  28. --image-logoheader: #{$image-logoheader};
  29. --image-favicon: #{$image-favicon};
  30. --color-loading-light: #{$color-loading-light};
  31. --color-loading-dark: #{$color-loading-dark};
  32. --color-box-shadow: #{$color-box-shadow};
  33. --color-border: #{$color-border};
  34. --color-border-dark: #{$color-border-dark};
  35. --border-radius: #{$border-radius};
  36. --border-radius-large: #{$border-radius-large};
  37. --border-radius-pill: #{$border-radius-pill};
  38. --font-face: #{$font-face};
  39. --default-font-size: #{$default-font-size};
  40. --default-line-height: #{$default-line-height};
  41. --animation-quick: #{$animation-quick};
  42. --animation-slow: #{$animation-slow};
  43. --header-height: #{$header-height};
  44. }