@principal-ade/industry-theme 0.1.14 → 0.1.15
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 +3 -3
- package/dist/esm/index.js +3 -3
- package/package.json +1 -1
- package/src/themes.ts +3 -3
package/dist/cjs/index.js
CHANGED
|
@@ -1718,8 +1718,8 @@ var slateGoldTheme = {
|
|
|
1718
1718
|
background: "#1a1c1e",
|
|
1719
1719
|
primary: "#E4C04A",
|
|
1720
1720
|
secondary: "#F0D060",
|
|
1721
|
-
accent: "#
|
|
1722
|
-
highlight: "#
|
|
1721
|
+
accent: "#2563EB",
|
|
1722
|
+
highlight: "#1e2a3d",
|
|
1723
1723
|
muted: "#2d3134",
|
|
1724
1724
|
success: "#10b981",
|
|
1725
1725
|
warning: "#E4C04A",
|
|
@@ -1738,7 +1738,7 @@ var slateGoldTheme = {
|
|
|
1738
1738
|
highlightBorder: "#E4C04A",
|
|
1739
1739
|
textOnPrimary: "#1a1c1e",
|
|
1740
1740
|
textOnSecondary: "#1a1c1e",
|
|
1741
|
-
textOnAccent: "#
|
|
1741
|
+
textOnAccent: "#ffffff"
|
|
1742
1742
|
},
|
|
1743
1743
|
buttons: {
|
|
1744
1744
|
primary: {
|
package/dist/esm/index.js
CHANGED
|
@@ -1633,8 +1633,8 @@ var slateGoldTheme = {
|
|
|
1633
1633
|
background: "#1a1c1e",
|
|
1634
1634
|
primary: "#E4C04A",
|
|
1635
1635
|
secondary: "#F0D060",
|
|
1636
|
-
accent: "#
|
|
1637
|
-
highlight: "#
|
|
1636
|
+
accent: "#2563EB",
|
|
1637
|
+
highlight: "#1e2a3d",
|
|
1638
1638
|
muted: "#2d3134",
|
|
1639
1639
|
success: "#10b981",
|
|
1640
1640
|
warning: "#E4C04A",
|
|
@@ -1653,7 +1653,7 @@ var slateGoldTheme = {
|
|
|
1653
1653
|
highlightBorder: "#E4C04A",
|
|
1654
1654
|
textOnPrimary: "#1a1c1e",
|
|
1655
1655
|
textOnSecondary: "#1a1c1e",
|
|
1656
|
-
textOnAccent: "#
|
|
1656
|
+
textOnAccent: "#ffffff"
|
|
1657
1657
|
},
|
|
1658
1658
|
buttons: {
|
|
1659
1659
|
primary: {
|
package/package.json
CHANGED
package/src/themes.ts
CHANGED
|
@@ -1350,8 +1350,8 @@ export const slateGoldTheme: Theme = {
|
|
|
1350
1350
|
background: '#1a1c1e', // Very dark charcoal
|
|
1351
1351
|
primary: '#E4C04A', // Bright Circuit Gold - sophisticated accent
|
|
1352
1352
|
secondary: '#F0D060', // Lighter gold for hover
|
|
1353
|
-
accent: '#
|
|
1354
|
-
highlight: '#
|
|
1353
|
+
accent: '#2563EB', // Deep Sapphire blue
|
|
1354
|
+
highlight: '#1e2a3d', // Blue-tinted highlight
|
|
1355
1355
|
muted: '#2d3134', // Dark grey
|
|
1356
1356
|
|
|
1357
1357
|
// Status colors
|
|
@@ -1380,7 +1380,7 @@ export const slateGoldTheme: Theme = {
|
|
|
1380
1380
|
// Text on secondary background
|
|
1381
1381
|
textOnSecondary: '#1a1c1e', // Dark text on lighter gold 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
|