@acorex/styles 19.10.1 → 19.11.0-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,9 +4,8 @@
|
|
4
4
|
.ax-editor-container {
|
5
5
|
--ax-comp-editor-font-size: 0.875rem;
|
6
6
|
--ax-comp-editor-gap: 0.5rem;
|
7
|
-
--ax-comp-editor-space-start-size:
|
8
|
-
--ax-comp-editor-space-end-size:
|
9
|
-
--ax-comp-editor-space-block-size: 0.5rem;
|
7
|
+
--ax-comp-editor-space-start-size: 1rem;
|
8
|
+
--ax-comp-editor-space-end-size: 1rem;
|
10
9
|
--ax-comp-editor-height: var(--ax-sys-size-base);
|
11
10
|
--ax-comp-editor-placeholder-space-x: 0.75rem;
|
12
11
|
|
@@ -229,8 +228,8 @@
|
|
229
228
|
.ax-md .ax-editor-container,
|
230
229
|
.ax-editor-container,
|
231
230
|
.ax-editor-container.ax-md {
|
232
|
-
--ax-comp-editor-space-start-size:
|
233
|
-
--ax-comp-editor-space-end-size:
|
231
|
+
--ax-comp-editor-space-start-size: 1rem;
|
232
|
+
--ax-comp-editor-space-end-size: 1rem;
|
234
233
|
--ax-comp-editor-button-font-size: 0.875rem;
|
235
234
|
--ax-comp-editor-gap: 0.5rem;
|
236
235
|
}
|
package/package.json
CHANGED
package/themes/default.scss
CHANGED
@@ -1,54 +1,38 @@
|
|
1
|
-
@use '../utils/index.scss' as
|
1
|
+
@use '../utils/index.scss' as *;
|
2
2
|
|
3
|
-
/*
|
4
|
-
Color themes that have multiple fixed primary colors, etc. that can range from 50 to 950, also generate 7 surfaces of these colors by default that are used to color components. If these colors have the same value, they are used for light mode and dark mode, but if you give the color key two colors, it uses the first color for light mode and the second color for dark mode. For example, you can see the color Danger
|
5
|
-
*/
|
6
3
|
$theme-colors: (
|
7
4
|
'primary': oklch(0.623 0.214 259.815),
|
8
5
|
'secondary': oklch(0.554 0.046 257.417),
|
9
6
|
'success': oklch(0.696 0.17 162.48),
|
10
7
|
'warning': oklch(0.769 0.188 70.08),
|
11
8
|
'danger': (
|
12
|
-
// Danger color for light mode
|
13
9
|
oklch(0.645 0.246 16.439),
|
14
|
-
// Danger color for dark mode
|
15
10
|
oklch(0.712 0.194 13.428),
|
16
11
|
),
|
17
12
|
);
|
18
13
|
|
19
|
-
/*
|
20
|
-
Surface colors for creating layouts, each color has a start and an end,
|
21
|
-
which we use to create the color spectrum of surfaces.
|
22
|
-
The colors are different for dark and light mode.
|
23
|
-
*/
|
24
14
|
$theme-surfaces: (
|
25
|
-
// Surfaces for light mode
|
26
15
|
'light-start': #ffffff,
|
27
16
|
'light-end': #d4d4d4,
|
28
|
-
|
29
|
-
// Surfaces for dark mode
|
30
17
|
'dark-start': #27272a,
|
31
|
-
'dark-end': #09090b
|
18
|
+
'dark-end': #09090b,
|
32
19
|
);
|
33
20
|
|
34
21
|
$options: (
|
35
22
|
'color-range': true,
|
36
|
-
// Color range production 50 to 950, if you don't need them you can put false
|
37
23
|
'light': #ffffff,
|
38
|
-
|
39
|
-
'dark': #09090b, // // dark is always a fixed color in the project, used in some special cases and does not change in light mode and dark mode.
|
24
|
+
'dark': #09090b,
|
40
25
|
);
|
41
26
|
|
42
|
-
/*
|
43
|
-
Importing default variables and overriding them with higher values
|
44
|
-
*/
|
45
27
|
@forward '../variables/index.scss';
|
46
28
|
|
47
29
|
:root,
|
48
30
|
.ax-light {
|
49
|
-
--ax-sys-body-font-size: 1rem;
|
50
|
-
--ax-sys-size-base: 2.5rem;
|
51
|
-
--ax-sys-border-radius: 0.5rem;
|
31
|
+
--ax-sys-body-font-size: 1rem;
|
32
|
+
--ax-sys-size-base: 2.5rem;
|
33
|
+
--ax-sys-border-radius: 0.5rem;
|
34
|
+
--ax-sys-color-body-text: 0, 0, 0;
|
35
|
+
--ax-sys-color-input-text: 0, 0, 0;
|
52
36
|
}
|
53
37
|
|
54
|
-
@include
|
38
|
+
@include generate-pallete-variables($theme-colors, $theme-surfaces, $options);
|