@deaquinodev/querky 0.4.17 → 0.4.18

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.
Files changed (2) hide show
  1. package/dist/index.js +23 -23
  2. 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: "yellow",
1481
- insertMode: "cyan",
1482
- normalMode: "yellow",
1483
- shellMode: "green",
1484
- logo: "magenta",
1485
- success: "green",
1486
- error: "red",
1487
- warning: "yellow",
1488
- muted: "grey"
1480
+ accent: "#cba6f7",
1481
+ insertMode: "#89b4fa",
1482
+ normalMode: "#fab387",
1483
+ shellMode: "#a6e3a1",
1484
+ logo: "#cba6f7",
1485
+ success: "#a6e3a1",
1486
+ error: "#f38ba8",
1487
+ warning: "#f9e2af",
1488
+ muted: "#7f849c"
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 = "cyan";
1512
- var STR_COLOR = "green";
1513
- var NUM_COLOR = "yellow";
1514
- var CMT_COLOR = "grey";
1511
+ var KW_COLOR = "#cba6f7";
1512
+ var STR_COLOR = "#a6e3a1";
1513
+ var NUM_COLOR = "#fab387";
1514
+ var CMT_COLOR = "#6c7086";
1515
1515
  function sqlTokenColor(type) {
1516
1516
  if (type === "keyword") return KW_COLOR;
1517
1517
  if (type === "string") return STR_COLOR;
@@ -1769,7 +1769,7 @@ function ErrorBox({ message }) {
1769
1769
  // src/ui/components/Banner.tsx
1770
1770
  import { Box as Box4, Text as Text4 } from "ink";
1771
1771
  import { Fragment as Fragment2, jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
1772
- var version = true ? "0.4.17" : process.env.npm_package_version ?? "unknown";
1772
+ var version = true ? "0.4.18" : process.env.npm_package_version ?? "unknown";
1773
1773
  var WORDMARK = [
1774
1774
  "\u2597\u2584\u2584\u2584\u2596 \u2597\u2596 \u2597\u2596\u2597\u2584\u2584\u2584\u2596\u2597\u2584\u2584\u2596 \u2597\u2596 \u2597\u2596\u2597\u2596 \u2597\u2596",
1775
1775
  "\u2590\u258C \u2590\u258C \u2590\u258C \u2590\u258C\u2590\u258C \u2590\u258C \u2590\u258C\u2590\u258C\u2597\u259E\u2598 \u259D\u259A\u259E\u2598",
@@ -1854,16 +1854,16 @@ var AI_COL = theme.insertMode;
1854
1854
  var ERROR_COL = theme.error;
1855
1855
  var WARN_COL = theme.warning;
1856
1856
  var SHELL_COL = theme.shellMode;
1857
- var ERD_BORDER = "grey";
1857
+ var ERD_BORDER = "#585b70";
1858
1858
  var ERD_PALETTE = [
1859
- "cyan",
1860
- "green",
1861
- "yellow",
1862
- "red",
1863
- "magenta",
1864
- "white",
1865
- "grey",
1866
- "blue"
1859
+ "#cba6f7",
1860
+ "#a6e3a1",
1861
+ "#89b4fa",
1862
+ "#f38ba8",
1863
+ "#fab387",
1864
+ "#94e2d5",
1865
+ "#f9e2af",
1866
+ "#f5c2e7"
1867
1867
  ];
1868
1868
  var NULL_MARKER = "\u2205";
1869
1869
  var COL_PAD = 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deaquinodev/querky",
3
- "version": "0.4.17",
3
+ "version": "0.4.18",
4
4
  "description": "A quirky terminal SQL client with vim mode, AI features, and schema-aware autocomplete",
5
5
  "main": "dist/index.js",
6
6
  "files": [