variables.less 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. // General
  2. @primary-color: #cfe5fa; // Base color for entire theme
  3. @secondary-color: #efefef; // Base color for bar-backgrounds
  4. @text-color: #000; // Text color for enabled widgets
  5. @disabled-color: #d3d3d3; // Base for disabled backgrounds and borders
  6. @error-color: #d46464;
  7. @container-background-color:#fff; // Backgrounds for various content areas such as TitlePane, ContentPane and Inputs
  8. @minor-selected-color: spin(saturate(darken(@primary-color, 6), 19), 0); // Color for various arrows and buttons
  9. @base-border-color: spin(desaturate(darken(@primary-color, 29), 44), -1); // Augmented and used directly by variables to create border colors for various widgets
  10. @unfocused-clickable-color: spin(saturate(lighten(@primary-color, 5), 10), 0); // Background color for enabled buttons, text inputs
  11. @border-color: spin(desaturate(darken(@primary-color, 15), 67), 8); // Border color for (enabled, unhovered) TextBox, Slider, Accordion, BorderContainer, TabContainer
  12. @minor-border-color: @disabled-color; // Color of borders inside widgets: horizontal line in Calendar between weeks, around color swatches in ColorPalette, above Dialog action bar
  13. @popup-border-color: @base-border-color; // Border for Dialog, Menu, Tooltip. Must also update tooltip.png (the arrow image file) to match
  14. @disabled-border-color: @disabled-color; // Border color for disabled/readonly Button, TextBox etc. widgets
  15. @disabled-background-color: @secondary-color; // Disabled button, textbox, etc.
  16. @disabled-text-color: darken(@secondary-color, 43); // Text color for disabled/readonly widgets
  17. @unselected-background-color: @secondary-color; // Background color for unselected/unopened tab button, accordion pane, TitlePane, Menu items
  18. @unselected-text-color: darken(@secondary-color, 65); // Text color for unselected/unopened tab button, accordion pane, TitlePane, Menu items
  19. @hovered-border-color: @base-border-color; // Hover of textbox, tab label, BorderContainer splitter, Calendar, etc.
  20. @hovered-background-color: @minor-selected-color; // Background color for hover of Button, MenuBar, Accordion pane, Calendar... anything that has a (non-white) color to start with and gets darker on hover
  21. @hovered-text-color: @text-color; // Used for title of select Accordion pane, label of select tab, hovered Menu item, etc.
  22. @pressed-border-color: @base-border-color; // During click on Calendar day, Slider up/down buttons, tab button, etc.
  23. @pressed-background-color: spin(saturate(darken(@primary-color, 16), 12), 0); // Background color while clicking on Accordion/TitlePane title bar, tab button, Calendar day, Toolbar button, Tree row.
  24. @selected-border-color: @base-border-color; // Selected AccordionPane, tab of nested TabContainer (but plain TabContainer is special)
  25. @selected-background-color: @primary-color; // Selected Accordion pane, nested tab label, Tree row
  26. @selected-text-color: @text-color; // title of selected Accordion pane, label of selected tab, hovered Menu item, etc.
  27. @bar-background-color: @secondary-color; // MenuBar, Toolbar, action bar at bottom of dialog
  28. @pane-background-color: @container-background-color; // Background color of Accordion panes, Dialogs, etc.
  29. @popup-background-color: @container-background-color; // Background for Dialog. TODO: currently use for ColorPalette, maybe should change.
  30. // Buttons
  31. @button-border-color: @base-border-color; // Border for (stand-alone) buttons in normal, hovered, or active state
  32. @button-background-color: @unfocused-clickable-color; // Background color for (unhovered) buttons
  33. @button-hovered-background-color: @minor-selected-color; // Background color for hovered buttons
  34. @button-pressed-background-color: @minor-selected-color; // Background color for active buttons
  35. @button-border-radius: 4px; // Rounded corner radius for buttons (except in toolbar)
  36. // Input widgets
  37. @focused-border-color: @base-border-color; // Focused textbox, editor, select, etc.
  38. @error-border-color: @error-color; // Border for textbox in error state
  39. @error-focused-border-color: darken(@error-color, 5); // Border of textbox in error state, and focused
  40. @erroricon-background-color: @error-color; // Background color for exclamation point validation icon (for TextBox in error state)
  41. @textbox-background-color: @container-background-color; // Default background color of TextBox based widgets
  42. @textbox-hovered-background-color: @unfocused-clickable-color; // Background color when hovering a unfocused TextBox, Select, Editor, or other input widget
  43. @textbox-focused-background-color: @textbox-background-color;
  44. @textbox-error-background-color: @textbox-background-color;
  45. @textbox-disabled-background-color: @disabled-background-color;
  46. @textbox-padding: 2px; // Padding for Textbox, Textarea, etc.
  47. // CheckBox, RadioButton
  48. @focus-outline-color: darken(@secondary-color, 65); // Color for artificial focus outline around labels of checkboxes
  49. // TabContainer
  50. @nestedtab-hovered-background-color: @unfocused-clickable-color;
  51. @nestedtab-hovered-border-color: @primary-color;
  52. @nestedtab-selected-border-color: @selected-border-color;
  53. @nestedtab-selected-background-color: @minor-selected-color;
  54. @tab-disabled-background-color: @disabled-color; // For disabled tabs of a TabContainer (not officially supported)
  55. // Arrow buttons (stand alone, or inside ComboBox / ComboButton / Spinner / etc.
  56. @arrowbutton-background-color: @secondary-color;
  57. @arrowbutton-hovered-background-color: @minor-selected-color; // Color of arrow when hovering ComboBox. But hovering Spinner doesn't change arrow color (TODO)
  58. @arrowbutton-pressed-background-color: @minor-selected-color;
  59. @arrowbutton-inner-border-color: @container-background-color; // Typically the arrows have an inner white border (a.k.a. padding) and then an outer black-ish border
  60. // Slider
  61. // Note: any changes here require corresponding changes in form/images/sliderThumbs.png
  62. @slider-fullbar-background-color: @primary-color; // Background color for part of slider bar before (to the left or below) the handle
  63. @slider-remainingbar-background-color: @container-background-color; // Background color for part of slider bar after (to the right or above) the handle
  64. @slider-hovered-fullbar-background-color: @minor-selected-color; // Background color for part of bar of hovered slider before (to the left or below) the handle
  65. @slider-hovered-remainingbar-background-color: @container-background-color; // Background color for part of bar of hovered slider after (to the right or above) the handle
  66. @slider-hoveredButton-background-color: @container-background-color; // Background color of slider increment/decrement buttons when mouse is over slider but not over the buttons
  67. @slider-focused-fullbar-background-color: @minor-selected-color; // Background color for part of bar of focused slider before (to the left or below) the handle
  68. @slider-focused-remainingbar-background-color: @container-background-color; // Background color for part of bar of focused slider after (to the right or above) the handle
  69. @slider-button-hovered-background-color: @primary-color; // Background color of slider increment/decrement buttons when mouse is over the buttons
  70. @slider-button-pressed-background-color: @minor-selected-color; // Background color of slider increment/decrement buttons while button is depressed
  71. // Select, ComboBox
  72. @select-dropdownitem-background-color: @container-background-color; // Background color for items in the drop down list of a ComboBox/Select
  73. @select-dropdownitem-hovered-background-color: @pressed-background-color; // Background color for the hovered item in the drop down list of a ComboBox/Select
  74. @select-matchedtext-background-color: @minor-selected-color; // Background color of text in ComboBox drop down that matches typed in phrase
  75. // Menus
  76. @menu-background-color: @popup-background-color;
  77. // Calendar
  78. @calendar-background-color: @primary-color;
  79. @calendar-currentmonth-background-color: @container-background-color; // Background color for days of the current month
  80. @calendar-adjacentmonth-background-color: @unfocused-clickable-color; // Background color used for days from previous or next month
  81. @calendar-adjacentmonth-text-color: @base-border-color; // Text color used for days from previous or next month
  82. @calendar-date-pressed-border-color: @container-background-color; // For some reason pressing a day of the month (as opposed to hovering it) makes the border go away, is this intentional?
  83. @calendar-date-pressed-background-color: @pressed-background-color;
  84. @calendar-date-selected-border-color: @selected-border-color;
  85. @calendar-date-selected-background-color: @minor-selected-color;
  86. @calendar-button-hovered-background-color: @unfocused-clickable-color; // for hover or next/previous year, and month drop down (TODO: border and background are built in to calendarArrows.png, can't control from here)
  87. @calendar-button-hovered-border-color: @container-background-color; // for hover or next/previous year, and month drop down
  88. @calendar-button-pressed-background-color: @pressed-background-color;
  89. @calendar-button-pressed-border-color: @pressed-border-color;
  90. // ProgressBar
  91. @progressbar-border-color: @popup-border-color; // Border color of progress bar
  92. @progressbar-full-background-color:@minor-selected-color; // Background color for part of progress bar indicating amount completed
  93. @progressbar-empty-background-color: @container-background-color; // Background color for part of progress bar indicating amount remaining
  94. @progressbar-text-color: @text-color; // Color of progress bar text (ex: "35%"). Must contrast with both empty and full background colors.
  95. // TimePicker
  96. @timepicker-minorvalue-background-color: @secondary-color; // For 3:15, 3:30, 3:45 but not 3:00 or 4:00
  97. @timepicker-minorvalue-text-color: darken(@secondary-color, 43);
  98. @timepicker-majorvalue-background-color: @unfocused-clickable-color; // For 3:00, 4:00, 5:00, etc.
  99. @timepicker-value-hovered-background-color: @pressed-background-color;
  100. @timepicker-value-hovered-text-color: @hovered-text-color;
  101. @timepicker-arrow-hovered-background-color: @minor-selected-color;
  102. // ColorPalette
  103. @colorpalette-background-color: @container-background-color;
  104. @swatch-border-color: @minor-border-color;
  105. @swatch-hovered-border-color: #000;
  106. @swatch-selected-border-color: #000;
  107. // Dialog
  108. @dialog-underlay-color: @container-background-color; // the thing that grays out the screen when a dialog is shown
  109. @dialog-titlebar-border-color: @container-background-color; // Inner border around the title sectionof a Dialog, inside the main border of the Dialog and the border between title and content
  110. @dialog-titlebar-background-color: @minor-selected-color;
  111. // BorderContainer
  112. @splitter-hovered-background-color: @primary-color; // Color of splitter when user hovers it, before mouse down
  113. @splitter-dragged-background-color: @minor-selected-color; // Color of splitter while it's being dragged
  114. // Toolbar
  115. @toolbar-button-checked-background-color: @container-background-color; // a toggled-on button in the toolbar
  116. @toolbar-combobutton-hovered-unhoveredsection-background-color: spin(saturate(lighten(@primary-color, 8), 19), -29); // when user hovers a ComboButton in a Toolbar, the other half of the button turns this color
  117. @toolbar-button-border-radius: 2px; // Rounded corner radius for buttons for buttons in toolbar
  118. // DnD
  119. @dnd-avatar-background-color: @container-background-color; // Background color of little Dialog-type box indicating dragged items
  120. @dnd-avatar-header-background-color: #f58383; // Title bar for dragged items
  121. @dnd-avatar-candrop-header-background-color: #97e68d;// Title bar for dragged items when they can be dropped
  122. @dnd-dropseparator-color: @base-border-color; // Color of line indicating that user is about to drop between items A & B
  123. // Document level
  124. @document-text-color: #131313; // Text color for document itself (text outside of widgets)
  125. @document-shadedsection-background-color: @bar-background-color;// background color used for <pre>, <code>, and table header rows
  126. @document-border-color: @disabled-color; // Border for <pre>, <code>, tables, etc.
  127. // Images
  128. @image-arrow-sprite: "images/spriteArrows.png";
  129. @image-calendar-container: "images/calendarContainerImages.png";
  130. @image-calendar-arrows: "images/calendarArrows.png";
  131. @image-calendar-arrows-ie6: "images/calendarArrows8bit.png";
  132. @image-checkmark: "images/checkmarkNoBorder.png";
  133. @image-checkmark-ie6: "images/checkmarkNoBorder.gif";
  134. @image-common-highlight: "images/commonHighlight.png";
  135. @image-dialog-close: "images/dialogCloseIcon.png";
  136. @image-dialog-close-ie6: "images/dialogCloseIcon8bit.png";
  137. @image-dnd: "images/dnd.png";
  138. @image-editor-icons-enabled: "../../icons/images/editorIconsEnabled.png";
  139. @image-form-button: "form/images/button.png";
  140. @image-form-button-arrows: "form/images/buttonArrows.png";
  141. @image-form-checkbox-and-radios: "form/images/checkboxRadioButtonStates.png";
  142. @image-form-checkbox-and-radios-ie6: "form/images/checkboxAndRadioButtons_IE6.png";
  143. @image-form-common-arrows: "form/images/commonFormArrows.png";
  144. @image-form-error: "form/images/error.png";
  145. @image-form-highlight: "form/images/formHighlight.png";
  146. @image-form-slider-horizontal: "form/images/sliderHorizontal.png";
  147. @image-form-slider-thumbs: "form/images/sliderThumbs.png";
  148. @image-form-slider-vertical: "form/images/sliderVertical.png";
  149. @image-form-textbox-background: "form/images/textBox_back.png";
  150. @image-layout-accordion: "layout/images/accordion.png";
  151. @image-layout-splitter-horizontal-hover: "layout/images/splitterHorizontalHover.png";
  152. @image-layout-splitter-vertical-hover: "layout/images/splitterVerticalHover.png";
  153. @image-layout-tab-bottom: "layout/images/tabBottom.png";
  154. @image-layout-tab-close: "layout/images/tabClose.png";
  155. @image-layout-tab-left: "layout/images/tabLeft.png";
  156. @image-layout-tab-nested: "layout/images/tabNested.png";
  157. @image-layout-tab-right: "layout/images/tabRight.png";
  158. @image-layout-tab-top: "layout/images/tabTop.png";
  159. @image-loading-animation: "images/loadingAnimation.gif";
  160. @image-menu-highlight: "images/menuHighlight.png";
  161. @image-progressbar-empty: "images/progressBarEmpty.png";
  162. @image-progressbar-full: "images/progressBarFull.png";
  163. @image-progressbar-anim: "images/progressBarAnim.gif";
  164. @image-titlebar: "images/titlebar.png";
  165. @image-tooltip: "images/tooltip.png";
  166. @image-tooltip-ie6: "images/tooltip8bit.png";
  167. @image-tooltip-gradient: "images/tooltipGradient.png";
  168. @image-tree-expand: "images/treeExpandImages.png";
  169. @image-tree-expand-ie6: "images/treeExpandImages8bit.png";
  170. // Mixins
  171. .border-radius (@radius) {
  172. -moz-border-radius: @radius;
  173. border-radius: @radius;
  174. }
  175. .box-shadow (@value) {
  176. -webkit-box-shadow: @value;
  177. -moz-box-shadow: @value;
  178. box-shadow: @value;
  179. }
  180. .transition-property (@value) {
  181. -webkit-transition-property: @value;
  182. -moz-transition-property: @value;
  183. transition-property: @value;
  184. }
  185. .transition-property (@value1, @value2) {
  186. -webkit-transition-property: @value1, @value2;
  187. -moz-transition-property: @value1, @value2;
  188. transition-property: @value1, @value2;
  189. }
  190. .transition-duration (@value) {
  191. -webkit-transition-duration: @value;
  192. -moz-transition-duration: @value;
  193. transition-duration: @value;
  194. }
  195. .transition-duration (@value1, @value2) {
  196. -webkit-transition-duration: @value1, @value2;
  197. -moz-transition-duration: @value1, @value2;
  198. transition-duration: @value1, @value2;
  199. }
  200. .transition-timing-function (@value) {
  201. -webkit-transition-timing-function: @value;
  202. -moz-transition-timing-function: @value;
  203. transition-timing-function: @value;
  204. }