@bigtablet/design-system 2.2.4 → 2.3.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.
- package/dist/index.d.ts +3 -1
- package/dist/index.js +4 -2
- package/dist/styles/colors/_index.scss +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -36,8 +36,9 @@ declare const baseColors: {
|
|
|
36
36
|
readonly neutral300: "#999999";
|
|
37
37
|
readonly neutral400: "#B3B3B3";
|
|
38
38
|
readonly neutral500: "#888888";
|
|
39
|
-
readonly neutral600: "#
|
|
39
|
+
readonly neutral600: "#777777";
|
|
40
40
|
readonly neutral700: "#666666";
|
|
41
|
+
readonly neutral800: "#333333";
|
|
41
42
|
readonly neutral900: "#121212";
|
|
42
43
|
readonly statusError: "#EF4444";
|
|
43
44
|
readonly statusSuccess: "#10B981";
|
|
@@ -71,6 +72,7 @@ declare const colors: {
|
|
|
71
72
|
readonly additive: "rgba(0, 0, 0, 0.05)";
|
|
72
73
|
readonly disabled: "rgba(26, 26, 26, 0.12)";
|
|
73
74
|
readonly overlay: "rgba(0, 0, 0, 0.50)";
|
|
75
|
+
readonly inverseSurface: "#333333";
|
|
74
76
|
};
|
|
75
77
|
readonly state: {
|
|
76
78
|
readonly hoverOnLight: "rgba(0, 0, 0, 0.05)";
|
package/dist/index.js
CHANGED
|
@@ -48,8 +48,9 @@ var baseColors = {
|
|
|
48
48
|
neutral300: "#999999",
|
|
49
49
|
neutral400: "#B3B3B3",
|
|
50
50
|
neutral500: "#888888",
|
|
51
|
-
neutral600: "#
|
|
51
|
+
neutral600: "#777777",
|
|
52
52
|
neutral700: "#666666",
|
|
53
|
+
neutral800: "#333333",
|
|
53
54
|
neutral900: "#121212",
|
|
54
55
|
statusError: "#EF4444",
|
|
55
56
|
statusSuccess: "#10B981",
|
|
@@ -82,7 +83,8 @@ var colors = {
|
|
|
82
83
|
solidDim: baseColors.neutral50,
|
|
83
84
|
additive: baseColors.alphaBlack5,
|
|
84
85
|
disabled: baseColors.alphaBlack12,
|
|
85
|
-
overlay: baseColors.alphaBlack50
|
|
86
|
+
overlay: baseColors.alphaBlack50,
|
|
87
|
+
inverseSurface: baseColors.neutral800
|
|
86
88
|
},
|
|
87
89
|
state: {
|
|
88
90
|
hoverOnLight: baseColors.alphaBlack5,
|
|
@@ -8,8 +8,9 @@ $color_base_neutral_200: #E5E5E5;
|
|
|
8
8
|
$color_base_neutral_300: #999999;
|
|
9
9
|
$color_base_neutral_400: #B3B3B3;
|
|
10
10
|
$color_base_neutral_500: #888888;
|
|
11
|
-
$color_base_neutral_600: #
|
|
11
|
+
$color_base_neutral_600: #777777;
|
|
12
12
|
$color_base_neutral_700: #666666;
|
|
13
|
+
$color_base_neutral_800: #333333;
|
|
13
14
|
$color_base_neutral_900: #121212;
|
|
14
15
|
$color_base_status_error: #EF4444;
|
|
15
16
|
$color_base_status_success: #10B981;
|
|
@@ -45,6 +46,7 @@ $color_bg_solid_dim: $color_base_neutral_50;
|
|
|
45
46
|
$color_bg_additive: $color_base_alpha_black_5;
|
|
46
47
|
$color_bg_disabled: $color_base_alpha_black_12;
|
|
47
48
|
$color_bg_overlay: $color_base_alpha_black_50;
|
|
49
|
+
$color_bg_inverse_surface: $color_base_neutral_800;
|
|
48
50
|
|
|
49
51
|
// ── Semantic: State ───────────────────────────────────────────────────────────
|
|
50
52
|
|