storj/satellite/admin/ui/public/pretty-print-json.css
Ivan Fraixedes 583cdc6e0e satellite/admin/ui: Create Web UI v1
This commit crate the Satellite Admin Web UI v1

* Bootstrap the files installing the project template:
  https://github.com/sveltejs/template
* Add the prettier prettier-plugin-svelte NPM packages as dev
  dependencies.
* Add an empty prettierrc.toml.
* Transform the project template to use Typescript rather than
  Javasript. See: https://github.com/sveltejs/template#using-typescript
* Replace the default favicon by the Storj logo.
* Create components in companion of some Typescript code which allows to
  generate a simple HTML page based on an opinionated definition of API.
* Implement all the Admin API client calls in the format that the UI
  generator components requires for rendering the UI from them.

Change-Id: I58fa586d68dc8998e5d89db169b8e90204f0a96d
2021-11-09 09:59:35 +00:00

63 lines
961 B
CSS

/*! pretty-print-json v1.0.3 ~ github.com/center-key/pretty-print-json ~ MIT License */
.json-key {
color: brown;
}
.json-string {
color: olive;
}
.json-number {
color: navy;
}
.json-boolean {
color: teal;
}
.json-null {
color: dimgray;
}
.json-mark {
color: black;
}
a.json-link {
color: purple;
transition: all 400ms;
}
a.json-link:visited {
color: slategray;
}
a.json-link:hover {
color: blueviolet;
}
a.json-link:active {
color: slategray;
}
.dark-mode .json-key {
color: indianred;
}
.dark-mode .json-string {
color: darkkhaki;
}
.dark-mode .json-number {
color: deepskyblue;
}
.dark-mode .json-boolean {
color: mediumseagreen;
}
.dark-mode .json-null {
color: darkorange;
}
.dark-mode .json-mark {
color: silver;
}
.dark-mode a.json-link {
color: mediumorchid;
}
.dark-mode a.json-link:visited {
color: slategray;
}
.dark-mode a.json-link:hover {
color: violet;
}
.dark-mode a.json-link:active {
color: silver;
}