variables.scss 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // Ionic Variables and Theming. For more info, please see:
  2. // http://ionicframework.com/docs/theming/
  3. // Font path is used to include ionicons,
  4. // roboto, and noto sans fonts
  5. $font-path: "../assets/fonts";
  6. // The app direction is used to include
  7. // rtl styles in your app. For more info, please see:
  8. // http://ionicframework.com/docs/theming/rtl-support/
  9. $app-direction: ltr;
  10. @import "ionic.globals";
  11. // Shared Variables
  12. // --------------------------------------------------
  13. // To customize the look and feel of this app, you can override
  14. // the Sass variables found in Ionic's source scss files.
  15. // To view all the possible Ionic variables, see:
  16. // http://ionicframework.com/docs/theming/overriding-ionic-variables/
  17. // Named Color Variables
  18. // --------------------------------------------------
  19. // Named colors makes it easy to reuse colors on various components.
  20. // It's highly recommended to change the default colors
  21. // to match your app's branding. Ionic uses a Sass map of
  22. // colors so you can add, rename and remove colors as needed.
  23. // The "primary" color is the only required color in the map.
  24. $colors: (
  25. primary: #488aff,
  26. secondary: #32db64,
  27. danger: #f53d3d,
  28. light: #f4f4f4,
  29. dark: #222
  30. );
  31. // App iOS Variables
  32. // --------------------------------------------------
  33. // iOS only Sass variables can go here
  34. // App Material Design Variables
  35. // --------------------------------------------------
  36. // Material Design only Sass variables can go here
  37. // App Windows Variables
  38. // --------------------------------------------------
  39. // Windows only Sass variables can go here
  40. // App Theme
  41. // --------------------------------------------------
  42. // Ionic apps can have different themes applied, which can
  43. // then be future customized. This import comes last
  44. // so that the above variables are used and Ionic's
  45. // default are overridden.
  46. @import "ionic.theme.default";
  47. // Ionicons
  48. // --------------------------------------------------
  49. // The premium icon font for Ionic. For more info, please see:
  50. // http://ionicframework.com/docs/ionicons/
  51. @import "ionic.ionicons";
  52. // Fonts
  53. // --------------------------------------------------
  54. @import "roboto";
  55. @import "noto-sans";