variables.less 3.2 KB

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