variables.less 2.8 KB

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