variables.less 3.2 KB

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