1 | @import "./ag-theme-balham-common";
|
2 | @import "./flat-colors";
|
3 |
|
4 |
|
5 | $default-background: white !default;
|
6 | $chrome-background: lighten($flat-clouds, 3) !default;
|
7 | $active: #0091EA !default;
|
8 | $foreground-color: #000 !default;
|
9 | $border-color: $flat-silver !default;
|
10 | $icon-color: $flat-gray-4 !default;
|
11 | $alt-background: $flat-clouds !default;
|
12 | $odd-row-background-color: rgb(252, 253, 254) !default;
|
13 |
|
14 |
|
15 | $foreground-color: rgba($foreground-color, $foreground-opacity) !default;
|
16 | $secondary-foreground-color: rgba($foreground-color, $secondary-foreground-color-opacity) !default;
|
17 | $disabled-foreground-color: rgba($foreground-color, $disabled-foreground-color-opacity) !default;
|
18 |
|
19 | $primary-color: $active !default;
|
20 | $accent-color: $active !default;
|
21 | $range-selection-background-color: transparentize($active, 0.8) !default;
|
22 | $range-selection-highlight-color: $active !default;
|
23 | $selected-color: lighten($active, 40) !default;
|
24 |
|
25 | $alt-icon-color: $default-background !default;
|
26 | $background-color: $default-background !default;
|
27 |
|
28 | $editor-background-color: $chrome-background !default;
|
29 | $panel-background-color: $chrome-background !default;
|
30 | $tool-panel-background-color: $chrome-background !default;
|
31 | $header-background-color: $chrome-background !default;
|
32 |
|
33 | $hover-color: $alt-background !default;
|
34 | $chip-background-color: darken($alt-background, 5) !default;
|
35 |
|
36 |
|
37 | $cell-data-changed-color: #fce4ec !default;
|
38 | $value-change-delta-up-color: #43a047 !default;
|
39 | $value-change-delta-down-color: #e53935 !default;
|
40 | $value-change-value-highlight-background-color: transparentize(#16A085, 0.5) !default;
|
41 |
|
42 | @import './ag-theme-balham-vars';
|
43 |
|
44 | .ag-theme-balham {
|
45 | @include ag-theme-balham($params);
|
46 | }
|