@principal-ade/industry-theme 0.1.15 → 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 CHANGED
@@ -1717,7 +1717,7 @@ var slateGoldTheme = {
1717
1717
  text: "#d0d6e0",
1718
1718
  background: "#1a1c1e",
1719
1719
  primary: "#E4C04A",
1720
- secondary: "#F0D060",
1720
+ secondary: "#64748b",
1721
1721
  accent: "#2563EB",
1722
1722
  highlight: "#1e2a3d",
1723
1723
  muted: "#2d3134",
@@ -1737,7 +1737,7 @@ var slateGoldTheme = {
1737
1737
  highlightBg: "#3D3215",
1738
1738
  highlightBorder: "#E4C04A",
1739
1739
  textOnPrimary: "#1a1c1e",
1740
- textOnSecondary: "#1a1c1e",
1740
+ textOnSecondary: "#ffffff",
1741
1741
  textOnAccent: "#ffffff"
1742
1742
  },
1743
1743
  buttons: {
package/dist/esm/index.js CHANGED
@@ -1632,7 +1632,7 @@ var slateGoldTheme = {
1632
1632
  text: "#d0d6e0",
1633
1633
  background: "#1a1c1e",
1634
1634
  primary: "#E4C04A",
1635
- secondary: "#F0D060",
1635
+ secondary: "#64748b",
1636
1636
  accent: "#2563EB",
1637
1637
  highlight: "#1e2a3d",
1638
1638
  muted: "#2d3134",
@@ -1652,7 +1652,7 @@ var slateGoldTheme = {
1652
1652
  highlightBg: "#3D3215",
1653
1653
  highlightBorder: "#E4C04A",
1654
1654
  textOnPrimary: "#1a1c1e",
1655
- textOnSecondary: "#1a1c1e",
1655
+ textOnSecondary: "#ffffff",
1656
1656
  textOnAccent: "#ffffff"
1657
1657
  },
1658
1658
  buttons: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@principal-ade/industry-theme",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "type": "module",
5
5
  "description": "Theme components and styles for industry-themed markdown",
6
6
  "main": "./dist/cjs/index.js",
package/src/themes.ts CHANGED
@@ -1349,7 +1349,7 @@ 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: '#F0D060', // Lighter gold for hover
1352
+ secondary: '#64748b', // Slate grey for secondary actions
1353
1353
  accent: '#2563EB', // Deep Sapphire blue
1354
1354
  highlight: '#1e2a3d', // Blue-tinted highlight
1355
1355
  muted: '#2d3134', // Dark grey
@@ -1378,7 +1378,7 @@ 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: '#1a1c1e', // Dark text on lighter gold secondary
1381
+ textOnSecondary: '#ffffff', // White text on slate grey secondary
1382
1382
  // Text on accent background
1383
1383
  textOnAccent: '#ffffff', // White text on blue accent
1384
1384
  },