_variables.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. // Body
  2. $body-bg: #f8fafc;
  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. $blue: #752360;
  19. $cyan: #326ce5;
  20. //$green: #0e8420;
  21. $green: #148c5d;
  22. //$red: #ed1843;
  23. $red: #e80566;
  24. $yellow: #f15d22;
  25. $black: #000;
  26. $gray-100: #f1f2f3;
  27. $navbar-light-color: rgba($black, .9);
  28. $white: #FFF;
  29. //
  30. // Panel Side Application Variables
  31. // Complementry color is used to indecate the loading bar on the top
  32. // of the page with pace.js plugin
  33. $complementry-color: adjust_hue($blue, 180);
  34. // ------- Sidebar Width --------
  35. $sidebar-width: 230px;
  36. // ------- Sidebar Colors --------
  37. // Background color of sidebar
  38. //$sidebar-color: rgba(116, 117, 118, 0.87);
  39. $sidebar-color: #747576;
  40. // -- Suggested sidebar background colors
  41. // dark : #222d32
  42. // light : #f8f8f8
  43. // Sidebar accent varible is used to determine the color of the links
  44. // of the sidebar. The allowed values are 'light' or 'dark' only
  45. $sidebar-accent: light;
  46. // The following varibles indecate sidebar link color
  47. // and link hover color when using a dark sidebar color
  48. $sidebar-dark-color: #fff;
  49. $sidebar-dark-link-color: #fff;
  50. // The following varibles indecate sidebar link color
  51. // and link hover color when using a light sidebar color
  52. //$sidebar-light-color: #000;
  53. //$sidebar-light-link-color: #333;
  54. //
  55. $sidebar-light-color: #fff;
  56. $sidebar-light-link-color: #fff;
  57. $sidebar-bg: #3c3f42;
  58. $sidebar-hover-bg: #e1e2e3;