_variables.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // Body
  2. $body-bg: #f2f3f9;
  3. // Typography
  4. $font-family-sans-serif: 'Nunito', sans-serif;
  5. $font-size-base: 0.9rem;
  6. $line-height-base: 1.6;
  7. // Colors
  8. $blue: #3490dc;
  9. $indigo: #6574cd;
  10. $purple: #9561e2;
  11. $pink: #f66d9b;
  12. $red: #e3342f;
  13. $orange: #f6993f;
  14. $yellow: #ffed4a;
  15. $green: #38c172;
  16. $teal: #4dc0b5;
  17. $cyan: #6cb2eb;
  18. // new color
  19. $primary : #07689F;
  20. $info: #A2D5F2;
  21. $secondary: #FF7E67;
  22. $success: #198754;
  23. $warning: #ffc107;
  24. $danger: #dc3545;
  25. $light: #f8f9fa;
  26. $dark: #212529;
  27. $gray: #6c757d;
  28. $theme-colors: (
  29. "primary": $primary,
  30. "secondary": $secondary,
  31. "success": $success,
  32. "info": $info,
  33. "warning": $warning,
  34. "danger": $danger,
  35. "light": $light,
  36. "dark": $dark,
  37. "gray": $gray
  38. );
  39. //
  40. // Panel Side Application Variables
  41. // Complementry color is used to indecate the loading bar on the top
  42. // of the page with pace.js plugin
  43. $complementry-color: adjust_hue($blue, 180);
  44. // ------- Sidebar Width --------
  45. $sidebar-width: 230px;
  46. // ------- Sidebar Colors --------
  47. // Background color of sidebar
  48. $sidebar-color: #747576;
  49. // Sidebar accent varible is used to determine the color of the links
  50. // of the sidebar. The allowed values are 'light' or 'dark' only
  51. $sidebar-accent: light;
  52. // The following varibles indecate sidebar link color
  53. // and link hover color when using a dark sidebar color
  54. $sidebar-dark-color: #fff;
  55. $sidebar-dark-link-color: #fff;
  56. //
  57. $sidebar-light-color: #fff;
  58. $sidebar-light-link-color: #fff;
  59. $sidebar-bg: #3c3f42;
  60. $sidebar-hover-bg: #e1e2e3;
  61. $edit-color : #595e63;