element-sim 1.1.6 → 1.1.7
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.
package/package.json
CHANGED
|
@@ -16,11 +16,11 @@ $--color-transition-base: color .2s cubic-bezier(.645,.045,.355,1) !default;
|
|
|
16
16
|
/* Color
|
|
17
17
|
-------------------------- */
|
|
18
18
|
/// color|1|Brand Color|0
|
|
19
|
-
$--color-primary: #
|
|
19
|
+
$--color-primary: #2163FC !default;
|
|
20
20
|
/// color|1|Background Color|4
|
|
21
21
|
$--color-white: #FFFFFF !default;
|
|
22
22
|
/// color|1|Background Color|4
|
|
23
|
-
$--color-black: #
|
|
23
|
+
$--color-black: #1D2129 !default;
|
|
24
24
|
$--color-primary-light-1: mix($--color-white, $--color-primary, 10%) !default; /* 53a8ff */
|
|
25
25
|
$--color-primary-light-2: mix($--color-white, $--color-primary, 20%) !default; /* 66b1ff */
|
|
26
26
|
$--color-primary-light-3: mix($--color-white, $--color-primary, 30%) !default; /* 79bbff */
|
|
@@ -31,13 +31,13 @@ $--color-primary-light-7: mix($--color-white, $--color-primary, 70%) !default; /
|
|
|
31
31
|
$--color-primary-light-8: mix($--color-white, $--color-primary, 80%) !default; /* d9ecff */
|
|
32
32
|
$--color-primary-light-9: mix($--color-white, $--color-primary, 90%) !default; /* ecf5ff */
|
|
33
33
|
/// color|1|Functional Color|1
|
|
34
|
-
$--color-success: #
|
|
34
|
+
$--color-success: #00B42A !default;
|
|
35
35
|
/// color|1|Functional Color|1
|
|
36
|
-
$--color-warning: #
|
|
36
|
+
$--color-warning: #FF7D00 !default;
|
|
37
37
|
/// color|1|Functional Color|1
|
|
38
|
-
$--color-danger: #
|
|
38
|
+
$--color-danger: #F53F3F !default;
|
|
39
39
|
/// color|1|Functional Color|1
|
|
40
|
-
$--color-info: #
|
|
40
|
+
$--color-info: #6B7785 !default;
|
|
41
41
|
|
|
42
42
|
$--color-success-light: mix($--color-white, $--color-success, 80%) !default;
|
|
43
43
|
$--color-warning-light: mix($--color-white, $--color-warning, 80%) !default;
|
|
@@ -49,21 +49,23 @@ $--color-warning-lighter: mix($--color-white, $--color-warning, 90%) !default;
|
|
|
49
49
|
$--color-danger-lighter: mix($--color-white, $--color-danger, 90%) !default;
|
|
50
50
|
$--color-info-lighter: mix($--color-white, $--color-info, 90%) !default;
|
|
51
51
|
/// color|1|Font Color|2
|
|
52
|
-
$--color-text-primary: #
|
|
52
|
+
$--color-text-primary: #272E3B !default;
|
|
53
53
|
/// color|1|Font Color|2
|
|
54
|
-
$--color-text-regular: #
|
|
54
|
+
$--color-text-regular: #4E5969 !default;
|
|
55
55
|
/// color|1|Font Color|2
|
|
56
|
-
$--color-text-secondary: #
|
|
56
|
+
$--color-text-secondary: #6B7785 !default;
|
|
57
57
|
/// color|1|Font Color|2
|
|
58
|
-
$--color-text-placeholder: #
|
|
58
|
+
$--color-text-placeholder: #A9AEB8 !default;
|
|
59
|
+
/// color|1|Font Color|2
|
|
60
|
+
$--color-text-gray: #A9AEB8 !default;
|
|
59
61
|
/// color|1|Border Color|3
|
|
60
|
-
$--border-color-base: #
|
|
62
|
+
$--border-color-base: #C9CDD4 !default;
|
|
61
63
|
/// color|1|Border Color|3
|
|
62
|
-
$--border-color-light: #
|
|
64
|
+
$--border-color-light: #E5E6EB !default;
|
|
63
65
|
/// color|1|Border Color|3
|
|
64
|
-
$--border-color-lighter: #
|
|
66
|
+
$--border-color-lighter: #F2F3F5 !default;
|
|
65
67
|
/// color|1|Border Color|3
|
|
66
|
-
$--border-color-extra-light: #
|
|
68
|
+
$--border-color-extra-light: #F7F8FA !default;
|
|
67
69
|
|
|
68
70
|
// Background
|
|
69
71
|
/// color|1|Background Color|4
|