_variables.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. //AdminLTE 2 Variables.less
  2. //=========================
  3. //PATHS
  4. //--------------------------------------------------------
  5. $path-to-bootstrap-sass: "../../bower_components/bootstrap/scss";
  6. $boxed-layout-bg-image-path: "../img/boxed-bg.jpg";
  7. //COLORS
  8. //--------------------------------------------------------
  9. //Primary
  10. $light-blue: #3c8dbc;
  11. //Danger
  12. $red: #dd4b39;
  13. //Success
  14. $green: #00a65a;
  15. //Info
  16. $aqua: #00c0ef;
  17. //Warning
  18. $yellow: #f39c12;
  19. $blue: #0073b7;
  20. $navy: #001F3F;
  21. $teal: #39CCCC;
  22. $olive: #3D9970;
  23. $lime: #01FF70;
  24. $orange: #FF851B;
  25. $fuchsia: #F012BE;
  26. $purple: #605ca8;
  27. $maroon: #D81B60;
  28. $black: #111;
  29. //$gray: #d2d6de;
  30. //LAYOUT
  31. //--------------------------------------------------------
  32. //Side bar and logo width
  33. $sidebar-width: 230px;
  34. //Boxed layout maximum width
  35. $boxed-layout-max-width: 1024px;
  36. //When the logo should go to the top of the screen
  37. $screen-header-collapse: map-get($grid-breakpoints, xs);
  38. //Link colors (aka: <a> tags)
  39. $link-color: $light-blue;
  40. $link-hover-color: lighten($link-color, 15%);
  41. //Body background (Affects main content background only)
  42. $main-bg: #ecf0f5;
  43. //SIDEBAR SKINS
  44. //--------------------------------------------------------
  45. //Dark sidebar
  46. $sidebar-dark-bg: #222d32;
  47. $sidebar-dark-hover-bg: darken($sidebar-dark-bg, 2%);
  48. $sidebar-dark-color: lighten($sidebar-dark-bg, 60%);
  49. $sidebar-dark-hover-color: #fff;
  50. $sidebar-dark-submenu-bg: lighten($sidebar-dark-bg, 5%);
  51. $sidebar-dark-submenu-color: lighten($sidebar-dark-submenu-bg, 40%);
  52. $sidebar-dark-submenu-hover-color: #fff;
  53. //Light sidebar
  54. $sidebar-light-bg: #f9fafc;
  55. $sidebar-light-hover-bg: lighten(#f0f0f1, 1.5%);
  56. $sidebar-light-color: #444;
  57. $sidebar-light-hover-color: #000;
  58. $sidebar-light-submenu-bg: $sidebar-light-hover-bg;
  59. $sidebar-light-submenu-color: #777;
  60. $sidebar-light-submenu-hover-color: #000;
  61. //CONTROL SIDEBAR
  62. //--------------------------------------------------------
  63. $control-sidebar-width: $sidebar-width;
  64. //BOXES
  65. //--------------------------------------------------------
  66. $box-border-color: #f4f4f4;
  67. $box-border-radius: 3px;
  68. $box-footer-bg: #fff;
  69. $box-boxshadow: 0 1px 1px rgba(0, 0, 0, 0.125);
  70. $box-padding: 10px;
  71. //Box variants
  72. $box-default-border-top-color: $gray-light;//#d2d6de;
  73. //BUTTONS
  74. //--------------------------------------------------------
  75. $btn-boxshadow: none;
  76. //PROGRESS BARS
  77. //--------------------------------------------------------
  78. $progress-bar-border-radius: 1px;
  79. $progress-bar-sm-border-radius: 1px;
  80. $progress-bar-xs-border-radius: 1px;
  81. //FORMS
  82. //--------------------------------------------------------
  83. $input-radius: 0;
  84. //BUTTONS
  85. //--------------------------------------------------------
  86. //Border radius for non flat buttons
  87. $btn-border-radius: 3px;
  88. //DIRECT CHAT
  89. //--------------------------------------------------------
  90. $direct-chat-height: 250px;
  91. $direct-chat-default-msg-bg: $gray;
  92. $direct-chat-default-font-color: #444;
  93. $direct-chat-default-msg-border-color: $gray;
  94. //CHAT WIDGET
  95. //--------------------------------------------------------
  96. $attachment-border-radius: 3px;
  97. //TRANSITIONS SETTINGS
  98. //--------------------------------------------------------
  99. //Transition global options
  100. $transition-speed: 0.3s;
  101. $transition-fn: ease-in-out;