@deaquinodev/querky 0.4.18 → 0.4.19
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/index.js +27 -40
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1477,15 +1477,15 @@ function tokenizeSql(sql) {
|
|
|
1477
1477
|
|
|
1478
1478
|
// src/ui/theme.ts
|
|
1479
1479
|
var theme = {
|
|
1480
|
-
accent: "#
|
|
1481
|
-
insertMode: "#
|
|
1482
|
-
normalMode: "#
|
|
1483
|
-
shellMode: "#
|
|
1484
|
-
logo: "#
|
|
1485
|
-
success: "#
|
|
1486
|
-
error: "#
|
|
1487
|
-
warning: "#
|
|
1488
|
-
muted: "#
|
|
1480
|
+
accent: "#d75f87",
|
|
1481
|
+
insertMode: "#87afaf",
|
|
1482
|
+
normalMode: "#af875f",
|
|
1483
|
+
shellMode: "#5faf5f",
|
|
1484
|
+
logo: "#d7af87",
|
|
1485
|
+
success: "#5faf5f",
|
|
1486
|
+
error: "#af5f5f",
|
|
1487
|
+
warning: "#d7af87",
|
|
1488
|
+
muted: "#9e9e9e"
|
|
1489
1489
|
};
|
|
1490
1490
|
|
|
1491
1491
|
// src/ui/components/QueryInput.tsx
|
|
@@ -1508,10 +1508,10 @@ var BG = "#1e1e1e";
|
|
|
1508
1508
|
var ACCENT = theme.insertMode;
|
|
1509
1509
|
var PROMPT_MUTED = theme.muted;
|
|
1510
1510
|
var PLACEHOLDER = "#585858";
|
|
1511
|
-
var KW_COLOR = "#
|
|
1512
|
-
var STR_COLOR = "#
|
|
1513
|
-
var NUM_COLOR = "#
|
|
1514
|
-
var CMT_COLOR = "#
|
|
1511
|
+
var KW_COLOR = "#af87af";
|
|
1512
|
+
var STR_COLOR = "#5faf5f";
|
|
1513
|
+
var NUM_COLOR = "#d7af87";
|
|
1514
|
+
var CMT_COLOR = "#767676";
|
|
1515
1515
|
function sqlTokenColor(type) {
|
|
1516
1516
|
if (type === "keyword") return KW_COLOR;
|
|
1517
1517
|
if (type === "string") return STR_COLOR;
|
|
@@ -1776,7 +1776,7 @@ var WORDMARK = [
|
|
|
1776
1776
|
"\u2590\u258C \u2590\u258C \u2590\u258C \u2590\u258C\u2590\u259B\u2580\u2580\u2598\u2590\u259B\u2580\u259A\u2596\u2590\u259B\u259A\u2596 \u2590\u258C",
|
|
1777
1777
|
"\u2590\u2599\u2584\u259F\u2599\u2596\u259D\u259A\u2584\u259E\u2598\u2590\u2599\u2584\u2584\u2596\u2590\u258C \u2590\u258C\u2590\u258C \u2590\u258C \u2590\u258C \u2584\u2584\u2584"
|
|
1778
1778
|
];
|
|
1779
|
-
var WORDMARK_COLOR =
|
|
1779
|
+
var WORDMARK_COLOR = "#d75f87";
|
|
1780
1780
|
function Banner({ connectionState }) {
|
|
1781
1781
|
const isConnected = connectionState.status === "connected";
|
|
1782
1782
|
return /* @__PURE__ */ jsxs4(Box4, { flexDirection: "column", marginTop: 2, marginBottom: 1, children: [
|
|
@@ -1812,23 +1812,10 @@ function Banner({ connectionState }) {
|
|
|
1812
1812
|
var R = "\x1B[0m";
|
|
1813
1813
|
var BOLD = "\x1B[1m";
|
|
1814
1814
|
var DIM = "\x1B[2m";
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
yellow: "\x1B[33m",
|
|
1820
|
-
blue: "\x1B[34m",
|
|
1821
|
-
magenta: "\x1B[35m",
|
|
1822
|
-
cyan: "\x1B[36m",
|
|
1823
|
-
white: "\x1B[37m",
|
|
1824
|
-
grey: "\x1B[90m",
|
|
1825
|
-
gray: "\x1B[90m"
|
|
1826
|
-
};
|
|
1827
|
-
function fg(color) {
|
|
1828
|
-
if (color in ANSI_FG) return ANSI_FG[color];
|
|
1829
|
-
const r = parseInt(color.slice(1, 3), 16);
|
|
1830
|
-
const g = parseInt(color.slice(3, 5), 16);
|
|
1831
|
-
const b = parseInt(color.slice(5, 7), 16);
|
|
1815
|
+
function fg(hex) {
|
|
1816
|
+
const r = parseInt(hex.slice(1, 3), 16);
|
|
1817
|
+
const g = parseInt(hex.slice(3, 5), 16);
|
|
1818
|
+
const b = parseInt(hex.slice(5, 7), 16);
|
|
1832
1819
|
return `\x1B[38;2;${r};${g};${b}m`;
|
|
1833
1820
|
}
|
|
1834
1821
|
function c(hex, s) {
|
|
@@ -1854,16 +1841,16 @@ var AI_COL = theme.insertMode;
|
|
|
1854
1841
|
var ERROR_COL = theme.error;
|
|
1855
1842
|
var WARN_COL = theme.warning;
|
|
1856
1843
|
var SHELL_COL = theme.shellMode;
|
|
1857
|
-
var ERD_BORDER = "#
|
|
1844
|
+
var ERD_BORDER = "#767676";
|
|
1858
1845
|
var ERD_PALETTE = [
|
|
1859
|
-
"#
|
|
1860
|
-
"#
|
|
1861
|
-
"#
|
|
1862
|
-
"#
|
|
1863
|
-
"#
|
|
1864
|
-
"#
|
|
1865
|
-
"#
|
|
1866
|
-
"#
|
|
1846
|
+
"#d75f87",
|
|
1847
|
+
"#5faf5f",
|
|
1848
|
+
"#87afaf",
|
|
1849
|
+
"#af87af",
|
|
1850
|
+
"#af875f",
|
|
1851
|
+
"#d7af87",
|
|
1852
|
+
"#5f87af",
|
|
1853
|
+
"#5f8787"
|
|
1867
1854
|
];
|
|
1868
1855
|
var NULL_MARKER = "\u2205";
|
|
1869
1856
|
var COL_PAD = 1;
|