@octoguide/mui-ui-toolkit 0.2.0 → 0.3.1
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/README.md +0 -84
- package/dist/index.d.mts +37 -0
- package/dist/index.d.ts +37 -0
- package/dist/index.js +29 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +29 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -26,7 +26,17 @@ var defaultTheme = {
|
|
|
26
26
|
border: "#C5CFE0",
|
|
27
27
|
borderFocus: "#1565C0",
|
|
28
28
|
overlayLight: "rgba(255, 255, 255, 0.8)",
|
|
29
|
-
overlayDark: "rgba(0, 0, 0, 0.12)"
|
|
29
|
+
overlayDark: "rgba(0, 0, 0, 0.12)",
|
|
30
|
+
overlayLight60: "rgba(255, 255, 255, 0.6)",
|
|
31
|
+
overlayLight70: "rgba(255, 255, 255, 0.7)",
|
|
32
|
+
overlayLight75: "rgba(255, 255, 255, 0.75)",
|
|
33
|
+
overlayLight85: "rgba(255, 255, 255, 0.85)",
|
|
34
|
+
colorRed: "#FF5630",
|
|
35
|
+
colorAmber: "#FFAB00",
|
|
36
|
+
colorOrange: "#FF8B00",
|
|
37
|
+
colorGreen: "#36B37E",
|
|
38
|
+
colorBlue: "#0065FF",
|
|
39
|
+
colorGrey: "#6B778C"
|
|
30
40
|
},
|
|
31
41
|
typography: {
|
|
32
42
|
fontFamilyBase: '"Source Sans Pro", sans-serif',
|
|
@@ -46,6 +56,8 @@ var defaultTheme = {
|
|
|
46
56
|
// 22px
|
|
47
57
|
fontSize3xl: "1.75rem",
|
|
48
58
|
// 28px
|
|
59
|
+
fontSize4xl: "2.25rem",
|
|
60
|
+
// 36px
|
|
49
61
|
// ── Weights (identical across all themes) ─────────────────────────────
|
|
50
62
|
fontWeightLight: 300,
|
|
51
63
|
fontWeightRegular: 400,
|
|
@@ -106,6 +118,22 @@ var defaultTheme = {
|
|
|
106
118
|
tooltip: 700
|
|
107
119
|
},
|
|
108
120
|
components: {
|
|
121
|
+
footer: {
|
|
122
|
+
background: "#003c8f",
|
|
123
|
+
textColor: "rgba(255, 255, 255, 0.7)",
|
|
124
|
+
linkColor: "rgba(255, 255, 255, 0.7)",
|
|
125
|
+
linkHoverColor: "#ffffff"
|
|
126
|
+
},
|
|
127
|
+
icon: {
|
|
128
|
+
xs: "12px",
|
|
129
|
+
sm: "16px",
|
|
130
|
+
md: "20px",
|
|
131
|
+
lg: "24px",
|
|
132
|
+
xl: "28px",
|
|
133
|
+
xxl: "32px",
|
|
134
|
+
xxxl: "36px",
|
|
135
|
+
display: "56px"
|
|
136
|
+
},
|
|
109
137
|
button: {
|
|
110
138
|
// Sizes & paddings (identical across themes)
|
|
111
139
|
paddingX: "12px",
|