@principal-ade/industry-theme 0.1.14 → 0.1.16
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/cjs/index.js +5 -5
- package/dist/esm/index.js +5 -5
- package/package.json +1 -1
- package/src/themes.ts +5 -5
package/dist/cjs/index.js
CHANGED
|
@@ -1717,9 +1717,9 @@ var slateGoldTheme = {
|
|
|
1717
1717
|
text: "#d0d6e0",
|
|
1718
1718
|
background: "#1a1c1e",
|
|
1719
1719
|
primary: "#E4C04A",
|
|
1720
|
-
secondary: "#
|
|
1721
|
-
accent: "#
|
|
1722
|
-
highlight: "#
|
|
1720
|
+
secondary: "#64748b",
|
|
1721
|
+
accent: "#2563EB",
|
|
1722
|
+
highlight: "#1e2a3d",
|
|
1723
1723
|
muted: "#2d3134",
|
|
1724
1724
|
success: "#10b981",
|
|
1725
1725
|
warning: "#E4C04A",
|
|
@@ -1737,8 +1737,8 @@ var slateGoldTheme = {
|
|
|
1737
1737
|
highlightBg: "#3D3215",
|
|
1738
1738
|
highlightBorder: "#E4C04A",
|
|
1739
1739
|
textOnPrimary: "#1a1c1e",
|
|
1740
|
-
textOnSecondary: "#
|
|
1741
|
-
textOnAccent: "#
|
|
1740
|
+
textOnSecondary: "#ffffff",
|
|
1741
|
+
textOnAccent: "#ffffff"
|
|
1742
1742
|
},
|
|
1743
1743
|
buttons: {
|
|
1744
1744
|
primary: {
|
package/dist/esm/index.js
CHANGED
|
@@ -1632,9 +1632,9 @@ var slateGoldTheme = {
|
|
|
1632
1632
|
text: "#d0d6e0",
|
|
1633
1633
|
background: "#1a1c1e",
|
|
1634
1634
|
primary: "#E4C04A",
|
|
1635
|
-
secondary: "#
|
|
1636
|
-
accent: "#
|
|
1637
|
-
highlight: "#
|
|
1635
|
+
secondary: "#64748b",
|
|
1636
|
+
accent: "#2563EB",
|
|
1637
|
+
highlight: "#1e2a3d",
|
|
1638
1638
|
muted: "#2d3134",
|
|
1639
1639
|
success: "#10b981",
|
|
1640
1640
|
warning: "#E4C04A",
|
|
@@ -1652,8 +1652,8 @@ var slateGoldTheme = {
|
|
|
1652
1652
|
highlightBg: "#3D3215",
|
|
1653
1653
|
highlightBorder: "#E4C04A",
|
|
1654
1654
|
textOnPrimary: "#1a1c1e",
|
|
1655
|
-
textOnSecondary: "#
|
|
1656
|
-
textOnAccent: "#
|
|
1655
|
+
textOnSecondary: "#ffffff",
|
|
1656
|
+
textOnAccent: "#ffffff"
|
|
1657
1657
|
},
|
|
1658
1658
|
buttons: {
|
|
1659
1659
|
primary: {
|
package/package.json
CHANGED
package/src/themes.ts
CHANGED
|
@@ -1349,9 +1349,9 @@ export const slateGoldTheme: Theme = {
|
|
|
1349
1349
|
text: '#d0d6e0', // Near-white grey for most text
|
|
1350
1350
|
background: '#1a1c1e', // Very dark charcoal
|
|
1351
1351
|
primary: '#E4C04A', // Bright Circuit Gold - sophisticated accent
|
|
1352
|
-
secondary: '#
|
|
1353
|
-
accent: '#
|
|
1354
|
-
highlight: '#
|
|
1352
|
+
secondary: '#64748b', // Slate grey for secondary actions
|
|
1353
|
+
accent: '#2563EB', // Deep Sapphire blue
|
|
1354
|
+
highlight: '#1e2a3d', // Blue-tinted highlight
|
|
1355
1355
|
muted: '#2d3134', // Dark grey
|
|
1356
1356
|
|
|
1357
1357
|
// Status colors
|
|
@@ -1378,9 +1378,9 @@ export const slateGoldTheme: Theme = {
|
|
|
1378
1378
|
// Text on primary background
|
|
1379
1379
|
textOnPrimary: '#1a1c1e', // Dark text on gold primary
|
|
1380
1380
|
// Text on secondary background
|
|
1381
|
-
textOnSecondary: '#
|
|
1381
|
+
textOnSecondary: '#ffffff', // White text on slate grey secondary
|
|
1382
1382
|
// Text on accent background
|
|
1383
|
-
textOnAccent: '#
|
|
1383
|
+
textOnAccent: '#ffffff', // White text on blue accent
|
|
1384
1384
|
},
|
|
1385
1385
|
|
|
1386
1386
|
// Component variants
|