|
6 | 6 |
|
7 | 7 | /// Generates a light dock-manager schema.
|
8 | 8 | /// @type {Map}
|
9 |
| -/// @prop {Color} primary-color [#E5E7E9] - |
10 |
| -/// @prop {Color} accent-color [#fff] - |
11 |
| -/// @prop {Color} text-color [rgba(0, 0, 0, .72)] - |
12 |
| -/// @prop {Color} border-color [#F3F5F7] - |
13 |
| -/// @prop {Color} button-text [rgba(0, 0, 0, .72)] - |
14 |
| -/// @prop {Color} splitter-background [#D3D6D9] - |
15 |
| -/// @prop {Color} flyout-shadow-color [rgba(0, 0, 0, .08)] - |
16 |
| -/// @prop {Color} joystick-icon-color-active [#000] - |
17 |
| -/// @prop {Color} joystick-border-color [#D3D6D9] - |
18 |
| -/// @prop {Color} tab-background-active [#F3F5F7] - |
19 |
| -/// @prop {Color} pane-content-background [#F3F5F7] - |
20 |
| -/// @prop {Color} floating-pane-border-color [#fff] - |
21 |
| -/// @prop {Color} context-menu-color-active [#000] - |
| 9 | +/// @prop {Color} accent-color [#fff] - Sets the pinned header background color, the joystick background and border colors, as well as the context menu background color. |
| 10 | +/// @prop {Color} border-color [#F3F5F7] - Sets the global border color in the dock manager. Also sets the pane content background and the context menu active background colors. |
| 11 | +/// @prop {Color} button-text [rgba(0, 0, 0, .72)] - Sets the button text color. |
| 12 | +/// @prop {Color} context-menu-background [null] - Sets the background color for context menus. |
| 13 | +/// @prop {Color} context-menu-background-active [null] - Sets the background color for active context menus. |
| 14 | +/// @prop {Color} context-menu-color [null] - Sets the text color for context menus. |
| 15 | +/// @prop {Color} context-menu-color-active [#000] - Sets the text color for active context menus. |
| 16 | +/// @prop {Color} dock-background [null] - Sets the background color of the dock manager. |
| 17 | +/// @prop {Color} dock-text [null] - Sets the text color of the dock manager. |
| 18 | +/// @prop {Color} floating-pane-border-color [#fff] - Sets the border color for floating panes. |
| 19 | +/// @prop {Color} flyout-shadow-color [rgba(0, 0, 0, .08)] - Sets the flyout shadow color. |
| 20 | +/// @prop {Color} joystick-background [null] - Sets the background color of the joystick. |
| 21 | +/// @prop {Color} joystick-background-active [null] - Sets the background color of the joysticks. |
| 22 | +/// @prop {Color} joystick-border-color [#D3D6D9] - Sets the border color of the joystick. |
| 23 | +/// @prop {Color} joystick-icon-color [#D3D6D9] - Sets the color for the joystick icons. |
| 24 | +/// @prop {Color} joystick-icon-color-active [#000] - Sets the color of the active joystick icons. |
| 25 | +/// @prop {Color} pane-content-background [#F3F5F7] - Sets the background color of the content panes. |
| 26 | +/// @prop {Color} pane-content-text [null] - Sets the text color of the content panes. |
| 27 | +/// @prop {Color} pane-header-background [null] - Sets the background color for pane headers. |
| 28 | +/// @prop {Color} pane-header-text [null] - Sets the text color for pane headers. |
| 29 | +/// @prop {Color} pinned-header-background [null] - Sets the background colors of pinned headers. |
| 30 | +/// @prop {Color} pinned-header-text [null] - Sets the text colors of pinned headers. |
| 31 | +/// @prop {Color} primary-color [#E5E7E9] - Sets the base dock manager color as well as the pane headers and tabs background colors. |
| 32 | +/// @prop {Color} splitter-background [#d3d6d9] - Sets the background color for the splitters. |
| 33 | +/// @prop {Color} splitter-handle [null] - Sets the background color for the splitter handles. |
| 34 | +/// @prop {Color} tab-background [null] - Sets the background color for tabs. |
| 35 | +/// @prop {Color} tab-background-active [#F3F5F7] - Sets the background color for active tabs. |
| 36 | +/// @prop {Color} tab-border-color [null] - Sets the border color for tabs. |
| 37 | +/// @prop {Color} tab-border-color-active [null] - Sets the border color for active tabs. |
| 38 | +/// @prop {Color} tab-text [null] - Sets the text color for tabs. |
| 39 | +/// @prop {Color} tab-text-active [null] - Sets the text color for active tabs. |
| 40 | +/// @prop {Color} text-color [rgba(0, 0, 0, .72)] - Sets the text color for most elements in the dock manager. Used as the default joystick icon color. |
22 | 41 | $_light-dock-manager: (
|
23 |
| - primary-color: #e5e7e9, |
24 | 42 | accent-color: #fff,
|
25 |
| - text-color: rgba(0, 0, 0, .72), |
26 | 43 | border-color: #f3f5f7,
|
27 | 44 | button-text: rgba(0, 0, 0, .72),
|
28 |
| - splitter-background: #d3d6d9, |
| 45 | + context-menu-background-active: null, |
| 46 | + context-menu-background: null, |
| 47 | + context-menu-color-active: #000, |
| 48 | + context-menu-color: null, |
| 49 | + dock-background: null, |
| 50 | + dock-text: null, |
| 51 | + floating-pane-border-color: #fff, |
29 | 52 | flyout-shadow-color: rgba(0, 0, 0, .08),
|
30 |
| - joystick-icon-color-active: #000, |
| 53 | + joystick-background-active: null, |
| 54 | + joystick-background: null, |
31 | 55 | joystick-border-color: #d3d6d9,
|
32 |
| - tab-background-active: #f3f5f7, |
| 56 | + joystick-icon-color: #d3d6d9, |
| 57 | + joystick-icon-color-active: #000, |
33 | 58 | pane-content-background: #f3f5f7,
|
34 |
| - floating-pane-border-color: #fff, |
35 |
| - context-menu-color-active: #000, |
| 59 | + pane-content-text: null, |
| 60 | + pane-header-background: null, |
| 61 | + pane-header-text: null, |
| 62 | + pinned-header-background: null, |
| 63 | + pinned-header-text: null, |
| 64 | + primary-color: #e5e7e9, |
| 65 | + splitter-background: #d3d6d9, |
| 66 | + splitter-handle: null, |
| 67 | + tab-background-active: #f3f5f7, |
| 68 | + tab-background: null, |
| 69 | + tab-border-color-active: null, |
| 70 | + tab-border-color: null, |
| 71 | + tab-text-active: null, |
| 72 | + tab-text: null, |
| 73 | + text-color: rgba(0, 0, 0, .72), |
36 | 74 | );
|
37 | 75 |
|
38 | 76 | /// Generates a fluent dock-manager schema.
|
|
0 commit comments