diff --git a/webui/assets/main.js b/webui/assets/main.js
index db54a3b1e..7927a3b42 100644
--- a/webui/assets/main.js
+++ b/webui/assets/main.js
@@ -161,10 +161,10 @@ class REPL {
output_string += `
Just getting started? Try this:
- $ curl -XPOST "http://127.0.0.1:10101/index/test" -d '{"options": {"columnLabel": "col"}}' # create index "test"
- $ curl -XPOST "http://127.0.0.1:10101/index/test/frame/foo" -d '{"options": {"rowLabel": "row"}}' # create frame "foo"
- # Select "test" in the index dropdown above
- SetBit(row=0, col=0, frame=foo) # Use PQL to set a bit
+ :create index test
+ :use test
+ :create frame foo
+ SetBit(rowID=0, columnID=0, frame=foo) # Use PQL to set a bit
`
}
}
diff --git a/webui/assets/style.css b/webui/assets/style.css
index 3a5bcaf39..3567a2a03 100644
--- a/webui/assets/style.css
+++ b/webui/assets/style.css
@@ -287,12 +287,6 @@ td{
padding: 21px 30px;
}
-.string { color: green; }
-.number { color: darkorange; }
-.boolean { color: blue; }
-.null { color: magenta; }
-.key { color: red; }
-
.expand {
text-align: center;
}
diff --git a/webui/index.html b/webui/index.html
index 034dba0f6..dc06e310a 100644
--- a/webui/index.html
+++ b/webui/index.html
@@ -56,7 +56,7 @@