|
1 |
| -@use '../share/mixin' as mixin; |
| 1 | +@use '../share/mixin' as *; |
| 2 | +@use '../share/theme' as *; |
2 | 3 | @use '../share/theme' as theme;
|
3 | 4 | @use 'sass:meta';
|
4 | 5 | @use 'sass:map';
|
5 | 6 |
|
6 | 7 | .luna-logcat {
|
7 | 8 | unicode-bidi: embed;
|
8 | 9 | position: relative;
|
9 |
| - line-height: #{theme.$line-height-l-g}em; |
10 |
| - border: 1px solid theme.$color-border; |
| 10 | + line-height: #{$line-height-l-g}em; |
| 11 | + border: 1px solid; |
11 | 12 | white-space: pre;
|
12 | 13 | overflow: hidden;
|
13 |
| - @include mixin.component(); |
| 14 | + @include component(); |
14 | 15 | & {
|
15 | 16 | user-select: text;
|
16 |
| - font-family: theme.$font-family-code; |
| 17 | + font-family: $font-family-code; |
17 | 18 | }
|
18 | 19 | &.wrap-long-lines {
|
19 | 20 | white-space: pre-wrap;
|
|
25 | 26 | }
|
26 | 27 |
|
27 | 28 | .entry {
|
28 |
| - padding-left: #{theme.$padding-x-x-s}px; |
29 |
| - font-size: #{theme.$font-size-s-m}px; |
| 29 | + padding-left: #{$padding-x-x-s}px; |
| 30 | + font-size: #{$font-size-s-m}px; |
30 | 31 | }
|
31 | 32 |
|
32 | 33 | .date,
|
|
48 | 49 | }
|
49 | 50 |
|
50 | 51 | .date {
|
51 |
| - margin-right: #{theme.$margin-x-x-s}px; |
| 52 | + margin-right: #{$margin-x-x-s}px; |
52 | 53 | }
|
53 | 54 |
|
54 | 55 | .pid {
|
|
64 | 65 | }
|
65 | 66 |
|
66 | 67 | .priority {
|
67 |
| - padding: 0 #{theme.$padding-x-s}px; |
| 68 | + padding: 0 #{$padding-x-s}px; |
68 | 69 | }
|
69 | 70 |
|
70 |
| -.W { |
71 |
| - .priority { |
72 |
| - background: theme.$color-warning-text; |
73 |
| - } |
74 |
| - .message { |
75 |
| - color: theme.$color-warning-text; |
76 |
| - } |
77 |
| -} |
78 |
| - |
79 |
| -.E { |
80 |
| - .priority { |
81 |
| - background: theme.$color-error-text; |
82 |
| - } |
83 |
| - .message { |
84 |
| - color: theme.$color-error-text; |
85 |
| - } |
86 |
| -} |
87 |
| - |
88 |
| -.D { |
89 |
| - .priority { |
90 |
| - background: theme.$color-success-text; |
91 |
| - } |
92 |
| -} |
93 |
| - |
94 |
| -.I { |
95 |
| - .priority { |
96 |
| - background: theme.$color-info-text; |
97 |
| - } |
98 |
| -} |
99 |
| - |
100 |
| -$colors: 'blue', 'purple', 'cyan', 'green', 'magenta', 'pink', 'red', 'orange', |
101 |
| - 'yellow', 'volcano', 'geekblue', 'gold', 'lime'; |
102 |
| - |
103 |
| -$variables: meta.module-variables(theme); |
104 |
| -@each $color in $colors { |
105 |
| - @for $i from 6 through 10 { |
106 |
| - .color-#{$color}-#{$i} { |
107 |
| - $variable-name: #{$color}-#{$i}; |
108 |
| - color: map.get($variables, $variable-name); |
109 |
| - } |
110 |
| - } |
111 |
| -} |
112 |
| - |
113 |
| -.theme-dark { |
114 |
| - border-color: theme.$color-border-dark; |
115 |
| - .W { |
116 |
| - .priority { |
117 |
| - background: theme.$color-warning-text-dark; |
118 |
| - } |
119 |
| - .message { |
120 |
| - color: theme.$color-warning-text-dark; |
| 71 | +@each $theme in ('light', 'dark') { |
| 72 | + .theme-#{$theme} { |
| 73 | + @include theme-var(border-color, color-border, $theme); |
| 74 | + .W { |
| 75 | + .priority { |
| 76 | + @include theme-var(background-color, color-warning-text, $theme); |
| 77 | + } |
| 78 | + .message { |
| 79 | + @include theme-var(color, color-warning-text, $theme); |
| 80 | + } |
121 | 81 | }
|
122 |
| - } |
123 | 82 |
|
124 |
| - .E { |
125 |
| - .priority { |
126 |
| - background: theme.$color-error-text-dark; |
127 |
| - } |
128 |
| - .message { |
129 |
| - color: theme.$color-error-text-dark; |
| 83 | + .E { |
| 84 | + .priority { |
| 85 | + @include theme-var(background-color, color-error-text, $theme); |
| 86 | + } |
| 87 | + .message { |
| 88 | + @include theme-var(color, color-error-text, $theme); |
| 89 | + } |
130 | 90 | }
|
131 |
| - } |
132 | 91 |
|
133 |
| - .D { |
134 |
| - .priority { |
135 |
| - background: theme.$color-success-text-dark; |
| 92 | + .D { |
| 93 | + .priority { |
| 94 | + @include theme-var(background-color, color-success-text, $theme); |
| 95 | + } |
136 | 96 | }
|
137 |
| - } |
138 | 97 |
|
139 |
| - .I { |
140 |
| - .priority { |
141 |
| - background: theme.$color-info-text-dark; |
| 98 | + .I { |
| 99 | + .priority { |
| 100 | + @include theme-var(background-color, color-info-text, $theme); |
| 101 | + } |
142 | 102 | }
|
143 |
| - } |
144 | 103 |
|
145 |
| - @each $color in $colors { |
146 |
| - @for $i from 6 through 10 { |
147 |
| - .color-#{$color}-#{$i} { |
148 |
| - $variable-name: #{$color}-#{$i}-dark; |
149 |
| - color: map.get($variables, $variable-name); |
| 104 | + $colors: 'blue', 'purple', 'cyan', 'green', 'magenta', 'pink', 'red', |
| 105 | + 'orange', 'yellow', 'volcano', 'geekblue', 'gold', 'lime'; |
| 106 | + |
| 107 | + $theme-variables: meta.module-variables(theme); |
| 108 | + @each $color in $colors { |
| 109 | + @for $i from 6 through 10 { |
| 110 | + .color-#{$color}-#{$i} { |
| 111 | + $variable-name: if( |
| 112 | + $theme == 'dark', |
| 113 | + #{$color}-#{$i}-dark, |
| 114 | + #{$color}-#{$i} |
| 115 | + ); |
| 116 | + color: map.get($theme-variables, $variable-name); |
| 117 | + } |
150 | 118 | }
|
151 | 119 | }
|
152 | 120 | }
|
|
0 commit comments