@principal-ade/industry-theme 0.1.20 → 0.1.21
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
|
@@ -1719,7 +1719,7 @@ var slateNeonTheme = {
|
|
|
1719
1719
|
colors: {
|
|
1720
1720
|
text: "#d0d6e0",
|
|
1721
1721
|
background: "#1a1c1e",
|
|
1722
|
-
primary: "#
|
|
1722
|
+
primary: "#F36F41",
|
|
1723
1723
|
secondary: "#ff8257",
|
|
1724
1724
|
accent: "#00ff00",
|
|
1725
1725
|
highlight: "#2a1f18",
|
|
@@ -1738,8 +1738,8 @@ var slateNeonTheme = {
|
|
|
1738
1738
|
textTertiary: "#6b7280",
|
|
1739
1739
|
textMuted: "#4b5563",
|
|
1740
1740
|
highlightBg: "#2a1f18",
|
|
1741
|
-
highlightBorder: "#
|
|
1742
|
-
textOnPrimary: "#
|
|
1741
|
+
highlightBorder: "#F36F41",
|
|
1742
|
+
textOnPrimary: "#1a1c1e",
|
|
1743
1743
|
textOnSecondary: "#ffffff",
|
|
1744
1744
|
textOnAccent: "#1a1c1e"
|
|
1745
1745
|
},
|
package/dist/esm/index.js
CHANGED
|
@@ -1631,7 +1631,7 @@ var slateNeonTheme = {
|
|
|
1631
1631
|
colors: {
|
|
1632
1632
|
text: "#d0d6e0",
|
|
1633
1633
|
background: "#1a1c1e",
|
|
1634
|
-
primary: "#
|
|
1634
|
+
primary: "#F36F41",
|
|
1635
1635
|
secondary: "#ff8257",
|
|
1636
1636
|
accent: "#00ff00",
|
|
1637
1637
|
highlight: "#2a1f18",
|
|
@@ -1650,8 +1650,8 @@ var slateNeonTheme = {
|
|
|
1650
1650
|
textTertiary: "#6b7280",
|
|
1651
1651
|
textMuted: "#4b5563",
|
|
1652
1652
|
highlightBg: "#2a1f18",
|
|
1653
|
-
highlightBorder: "#
|
|
1654
|
-
textOnPrimary: "#
|
|
1653
|
+
highlightBorder: "#F36F41",
|
|
1654
|
+
textOnPrimary: "#1a1c1e",
|
|
1655
1655
|
textOnSecondary: "#ffffff",
|
|
1656
1656
|
textOnAccent: "#1a1c1e"
|
|
1657
1657
|
},
|
package/package.json
CHANGED
package/src/themes.ts
CHANGED
|
@@ -1348,7 +1348,7 @@ export const slateNeonTheme: Theme = {
|
|
|
1348
1348
|
// Base colors - Slate greys with tangerine primary
|
|
1349
1349
|
text: '#d0d6e0', // Near-white grey for most text
|
|
1350
1350
|
background: '#1a1c1e', // Very dark charcoal
|
|
1351
|
-
primary: '#
|
|
1351
|
+
primary: '#F36F41', // Bright tangerine
|
|
1352
1352
|
secondary: '#ff8257', // Lighter tangerine for hover
|
|
1353
1353
|
accent: '#00ff00', // Neon green accent
|
|
1354
1354
|
highlight: '#2a1f18', // Tangerine-tinted highlight
|
|
@@ -1373,10 +1373,10 @@ export const slateNeonTheme: Theme = {
|
|
|
1373
1373
|
|
|
1374
1374
|
// Search highlight colors
|
|
1375
1375
|
highlightBg: '#2a1f18', // Tangerine highlight
|
|
1376
|
-
highlightBorder: '#
|
|
1376
|
+
highlightBorder: '#F36F41', // Tangerine border
|
|
1377
1377
|
|
|
1378
1378
|
// Text on primary background
|
|
1379
|
-
textOnPrimary: '#
|
|
1379
|
+
textOnPrimary: '#1a1c1e', // Dark text on tangerine primary (AA contrast)
|
|
1380
1380
|
// Text on secondary background
|
|
1381
1381
|
textOnSecondary: '#ffffff', // White text on lighter tangerine secondary
|
|
1382
1382
|
// Text on accent background
|