IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
1 | 1 | // assign default value to all undefined variables |
2 | 2 | |
| 3 | /** |
| 4 | * Core variables |
| 5 | */ |
3 | 6 | |
4 | | // core variables |
5 | | |
6 | 7 | $text-color: #fff !default; |
7 | 8 | $base-color: #222 !default; |
8 | | $icon-color: hsl( hue( $base-color ), 7%, 95% ) !default; |
| 9 | $icon-color: hsl(hue($base-color), 7%, 95%) !default; |
9 | 10 | $highlight-color: #0074a2 !default; |
10 | 11 | $notification-color: #d54e21 !default; |
11 | 12 | |
| 13 | /** |
| 14 | * Global |
| 15 | */ |
12 | 16 | |
13 | | // global |
14 | | |
15 | 17 | $body-background: #f1f1f1 !default; |
16 | 18 | |
17 | 19 | $link: #0074a2 !default; |
18 | | $link-focus: lighten( $link, 10% ) !default; |
| 20 | $link-focus: lighten($link, 10%) !default; |
19 | 21 | |
20 | 22 | $button-color: $highlight-color !default; |
21 | 23 | $form-checked: $highlight-color !default; |
22 | 24 | |
| 25 | /** |
| 26 | * Admin menu & admin-bar |
| 27 | */ |
23 | 28 | |
24 | | // admin menu & admin-bar |
25 | | |
26 | 29 | $menu-text: $text-color !default; |
27 | 30 | $menu-icon: $icon-color !default; |
28 | 31 | $menu-background: $base-color !default; |
… |
… |
|
35 | 38 | $menu-current-icon: $menu-highlight-icon !default; |
36 | 39 | $menu-current-background: $menu-highlight-background !default; |
37 | 40 | |
38 | | $menu-submenu-text: mix( $base-color, $text-color, 30% ) !default; |
39 | | $menu-submenu-background: darken( $base-color, 7% ) !default; |
40 | | $menu-submenu-background-alt: desaturate( lighten( $menu-background, 7% ), 7% ) !default; |
41 | | |
| 41 | $menu-submenu-text: mix($base-color, $text-color, 30%) !default; |
| 42 | $menu-submenu-background: darken($base-color, 7%) !default; |
| 43 | $menu-submenu-background-alt: desaturate(lighten($menu-background, 7%), 7%) !default; |
42 | 44 | $menu-submenu-focus-text: $highlight-color !default; |
43 | 45 | $menu-submenu-current-text: $text-color !default; |
44 | 46 | |
… |
… |
|
52 | 54 | $menu-collapse-focus-text: $text-color !default; |
53 | 55 | $menu-collapse-focus-icon: $menu-highlight-icon !default; |
54 | 56 | |
55 | | $adminbar-avatar-frame: lighten( $menu-background, 7% ) !default; |
56 | | $adminbar-input-background: lighten( $menu-background, 7% ) !default; |
57 | | |
58 | | $menu-customizer-text: mix( $base-color, $text-color, 40% ) !default; |
| 57 | $menu-customizer-text: mix($base-color, $text-color, 40%) !default; |
| 58 | |
| 59 | $adminbar-avatar-frame: lighten($menu-background, 7%) !default; |
| 60 | $adminbar-input-background: lighten($menu-background, 7%) !default; |